How to write data transfer to select all check boxes when select all radio button is selected

Hi,

My requirement is how to write a data transfer to select all check boxes in a page when we select select all radio button is selected.

@NagarjunaS16644648 Hi Can you please confirm if those checkboxes are all single level properties ? If yes then create a DT and set all those properties to true when select all is checked. If no please let me know on how those checkboxes are implemented

@SrinidhiM Thank You very Much Srinidhi M ok those are single level properties how to do that when select radio button is “select all” is selected

@NagarjunaS16644648 Hi,

how are you displaying the two options(select all and set to default) is it a local list in text property ? if yes then you can use @equalsIgnoreCase(.PropertyName,“Select all”) , this can be used as the when and then you can set all the properties.

on change of the radio button enable refresh section action and call the DT in it

@SrinidhiM Thank You Srinidhi M