Hey,
Little problem, am doing i relate or unrelate with a combobox but it only update one item when i press the update button, what am i doing wrong:
Here is the code on the button - OnSelect
Set(loaderOn, true);
If(
Radio1.Selected.Value = "Remove",
ForAll(StoreCombo.SelectedItems, Unrelate(
MobGallery.Selected.StoreReferentials,
StoreCombo.Selected
)
),
ForAll(StoreCombo.SelectedItems, Relate(
MobGallery.Selected.StoreReferentials,
StoreCombo.Selected
)
)
);
Set(loaderOn, false)