Seltion of checboxes

0
I want to select only 5check boxes where there are many check boxes but for me i want to make sure that customer should not select more than 5check boxes . can i know how i can achieve this using microflow
asked
3 answers
5

Hi Prajwal,

 

 

You can take an helper entity, in that entity you can store check box numbers.

You can trigger a microflow/nanoflow on a change event. In microflow/nanoflow you can count the selected check box number and store that number in helper entity.

 

answered
2

In the nanoflow make a variable counter. Then for each boolean create a decision and check if the boolean is true. If so add one to the counter. So after each decision you now know how many checkboxes are true.

Regards,

Ronald

 

answered
1

Hi Prajwal,

 

You can call microflow/nanoflow on selection/un-selection of checkbox in on change vent of checkbox and in that microflow you can put your logic to count the total number checkbox selected and then you can disable or put validation message for user.

 

Thanks

answered