I Dont understand why I cant access all properties of a control in a Gallery.AllItems
I have an icon showing up for a modified line in a gallery.
That icon.visibility have a set of formulas to show up or not if a value has been modified.
(Ex: Icon.Visible = TextBox_Name.Text <> ThisItem.Name) (But my formulas check like 20 values).
So I'm trying to do:
Clear(ColNames);
ForAll(
Filter(Gallery.AllItems, ThisItem.Icon.Visible = true) As ThisName,
Collect(ColNames,{ID: ThisName.ID, Title: ThisName.TextBox_Name.Text})
);
Patch(SharepointListNames,ColNames);
Goal is to have one patch command to save all modifications on multiple items in a SharePoint list without updating all records nor Collecting all gallery items.
My work around so far is to put a value in the AccessibleLabel=If(Self.Visible,"Save","") and check that value to collect only the modified items.
But I would prefer by far reading the Visible value.

Report
All responses (
Answers (