
Announcements
hi,
What might be a reason for the OnUncheck property not working on Edit mode for the FIRST UNCHECK.
During Edit mode, it is showing as checked, but when uncheck it is not removing the value from collection. Have to check and uncheck for it to work.
On View form, I used this to check the value of the selected ticket
ClearCollect(colWorkingOption,ThisItem.Option.Value);
May be instead of ThisItem.Option I need to put Collection in the Default Property of the DataCard but I was getting the error 'Expected Record Value' when I do that.
Seem removing .Value did the trick
ClearCollect(colWorkingOption,ThisItem.Option.Value);
Removed ".Value"
ClearCollect(colWorkingOption,ThisItem.Option);