Hi all,
I have created an app where OnVisible =
ClearCollect(
colMyReports, Office365Users.DirectReportsV2(Label1_1).value, {compPerf:"", hrsPrWk:""}
);
I then have a gallery showing that collection with a Slider (0-10) and a Dropdown (Items = ["0", "10", "20", "30", "40"]) in each gallery item. The Slider's OnChange =
Patch(
colMyReports, ThisItem,{compPerf:Slider1.Value})
Default = ThisItem.compPerf
and the Dropdown's OnChange=
Patch(
colMyReports, ThisItem,{hrsPrWk: Dropdown2.SelectedText.Value})
Default = ThisItem.hrsPrWk
So far so good - the collection is created with empty columns for compPerf and hrsPrWeek. Changing the slider correctly updates the compPerf column per item, but the hrsPerWeek Dropdown of the first gallery item updates all of the items in the gallery (but not in the collection itself - just in the gallery). All other gallery item dropdowns (aside from the first one) behave as expected, only updating that one item.
Any idea why the first gallery item is populating through all other gallery items ONLY when changing the first one?
tx,
dh