Hi @common_user ,
It depends if the checkbox is connected to a field/column of the collection or not.
Not connected to a field/column
First add a field when you Collect the collection, and give it the default value 'false'
ClearCollect(collection,AddColumns(YourDataSource,"SelectionField",false))
then do the steps you would do with an existing column:
Connected to a field/column 'SelectionField' (replace with your own column)
Properties of the CheckBox:
OnCheck: Patch(collection, Thisitem, {SelectionField: true})
OnUncheck: Patch(collection, Thisitem, {SelectionField: false})
Default: Thisitem.SelectionField
Properties of ResetButton
OnSelect: UpdateIf(collection,true,{SelectionField: false})
Hope this helps,
Marc