Hi All,
I am trying to develop a screen with grid/gallery to show all the columns and row data with previous and current value (Attached Screenshot). The current value in the row of grid/gallery is editable only when checkbox is checked while previous value remains in view mode.
To achieve this : I am using blank horizontal gallery with 2 controls (textboxes) for previous and current value inside the blank horizontal gallery at each column level. For e.g. Tag Number is having one blank horizontal gallery with 2 textboxes.
To make the gallery editable, I am collecting the checked row item in the collection
Collect(colSelected,ThisItem);
and in the current value textbox I am using the property “Display Mode” to dynamically change the mode from View to Edit by checking if row id matches with the collected item,
If(ThisItem.EquipmentID in colSelected.EquipmentID,Edit,View)
And making the “Border Thickness” to 2 from 0,
If(ThisItem.EquipmentID in colSelected.EquipmentID,2,0)
But I am facing challenges in making the controls editable at the nested gallery level, only for the control in the gallery in 1st column mode is changing from View to Edit but not working in other controls in galleries in other columns.
Can anyone please help me on this issue?

Report
All responses (
Answers (