Data input within an expanded row

Hey @davblo,

In order to access textInput6's value, you need to pass the index of the currentRow that you're modifying (it works like the listViews/Repeatables), as the component's state is creating an object for each row you expand and shows the component. See example below, I have an expandable row which has a table inside it, when the row is expanded, the component's state shows an object with index 12 (the same as the currentRow) with all of the info of the table:

If I then go an expand another row, it will add another object, with the respective index of its currentRow

image

So for example, if you try {{textInput6[table27.selectedDataIndex].value }} it will return the actual value. You can see a related thread with solutions here:

Hope this helps!