Hello,
I built an app with multiple fields (comboboxes) and checkboxes next to them. I set the OnCheck and OnUncheck properties, so that if the checkbox is checked, the item from the combobox is saved to a collection (with collect function) and if the checkbox is unchecked, it is removed again. So far, so good.
My problem is that everytime a checkbox is checked, it always creates a new row in the collection, like this:
But I need everything to be in just one row, like this:
I need it that way, because I'll patch it to a sharepoint list and there should be only one record per patch. Is there a way to achieve what I want? Also suggest anything without a collection, if there's something, please.
Thanks in advance!