Hi everyone,
I have a collection called: tblAction. It is a collection which collects all the changes I make in a Gallery. For some reason my save button does not work correctly. In the onselect property I have done the following:
If(
CountRows(tblAction) > 0;
Patch(
actionlist;tblAction
);;
Notify(
"Actions Successfully Saved";
NotificationType.Success
))
;;
Clear(tblAction)
-------------------------------------------
The Clear(tblAction) is not working correctly. Because it is not making the collection empty. Once I perform this command without the previous steps (so patching and the notification) it works fine.
Please help me out. Attached is a screenshot of the gallery.