Hi,
How can i access the value of a textbox that is nested within a gallery? What I am trying to achieve is loop though each item in the gallery and get the textbox1 value. to patch to a datasource.
I have tried the following. however the loops keeps accessing the first itean of the gallery instead of getting the row relevent to that part of the loop.
ForAll(Gallery1.AllItems, UpdateIf(Collection1, ID = ID, {TOOL: Value(TOOL_TI.Text)}))
NOTE: the following works if the collection is replaced with an SQL database, however I require it to work fo a local collection.
ForAll(Gallery1.AllItems,
Patch(EmployeeWorkOrderAssignments,{ID:ID}, {TOOL: Value(TOOL_TI.Text)}
)
)