function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
pcmca_2007@yahoo.co.inpcmca_2007@yahoo.co.in 

Unchecking Checkbox

Hi All,

          I have a requirement that the selected checkboxes from checkboxlist will become unchecked after command

          button is pressed.Can anybody will guide me how I should achieve this.

 

      With Regards

       Prabhash Mishra

goabhigogoabhigo

In the action method (commandButton) just specify

Obj.CheckBox1__c = false;

Obj.CheckBox2__c = false;