Hi! I would really appreciate if someone could help me with the issues I encountered in my work, I have a Repeating group with a checkbox and I also have a pagination arrows.
My problem is that whenever I checked a checkbox then I clicked arrow next to go to the next page of Repeating group and try to go back again into the previous page, The row that I checked before was unchecked again?
Iām really looking forward to know the solution for this one. thanks a lot!
You will need to create a workflow to store the itens you checked, so in every pagination, your checkboxes can check if they need to be checked or not.
Create a custom state in you RG called āListOfChecksā (list of texts);
Everytime a checkbox is checked/unckeched you need to run a workflow to ADD or REMOVE this itens uniq_id to this state (ListOfChecks);
You will need to make your checkbox default value to be dynamic and create a expression to chech if your state ListOfChecks CONTAINS current cells uniq_id.