Adding data from a list to multiple text boxes on another screen

Hi All,

I asked Chatgpt this question but can’t figure out this bit of the solution

When [Data_List_Viewer].Item_Click:
****do [add [get property of item] to list [SelectedItems]]

In Thunkable, how can I populate multiple text boxes on one screen with multiple data selections chosen from a different screen using data list viewer.

  1. Add Selected Item to List:
  • Go to the List drawer in the Blocks section.
  • Drag the block “add item to list [list]” into the “do” section of the Data List Viewer item click event.
  • Set the list to SelectedItems.
  • From the Data List Viewer drawer, drag the block that returns the selected item (usually named “get property of item”).
  • Use this block to specify the item to add.

Here’s how the complete block setup will look:

When [Data_List_Viewer].Item_Click:
do [add [get property of item] to list [SelectedItems]]

I am trying to add selections from scree " Skill Selection" into the text box on screen “Skills Tracker”


Can anybody help me out?

Thanks
Ray

Just store the data in variables and on the other screen get the values ​​again.

Hi Samir, Thanks for the response Sorry I don’t know how to do that, complete newbie.

Initializes the necessary variables to record the required values.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.