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
kamesh kasapukamesh kasapu 

how to create the check box for all the days of the week

hi all i need help 

 
DeepthiDeepthi (Salesforce Developers) 
Hi,

Please find the sample code for using checkboxes in VF page.
 
<apex:page >
<apex:form >
   <apex:pageBlock >
       <apex:pageBlockSection >
           <apex:pageBlockSectionItem >Name<apex:inputText /></apex:pageBlockSectionItem>
           <apex:pageBlockSectionItem >Age:
               <apex:selectRadio >
                   <apex:selectOption itemLabel="Male" itemValue="m"/>
                   <apex:selectOption itemLabel="Female" itemValue="f"/>           
               </apex:selectRadio>     
           </apex:pageBlockSectionItem>
           <apex:pageBlockSectionItem >Skills:
         
           <apex:selectcheckboxes layout="pageDirection">
                   <apex:selectOption itemLabel="C" itemValue="f"/>
                   <apex:selectOption itemLabel="C++" itemValue="cpp"/>    
                   <apex:selectOption itemLabel="JAVA" itemValue="j"/>
                   <apex:selectOption itemLabel="HTML" itemValue="h"/>  
                   <apex:selectOption itemLabel="JAVASCRIPT" itemValue="js"/>
                   <apex:selectOption itemLabel="VC++" itemValue="vcpp"/>         
               </apex:selectcheckboxes> 
       
           </apex:pageBlockSectionItem>
           <apex:pageBlockSectionItem >Active?<apex:inputCheckbox /></apex:pageBlockSectionItem>
       </apex:pageBlockSection>
       <apex:pageBlockButtons >
           <apex:commandButton value="Store"/>
       </apex:pageBlockButtons>
   </apex:pageBlock>
</apex:form>
</apex:page>
If you want to communicate to the "Model", you need to write the Controller class for this Visualforce page.

Hope this helps you!
Best Regards,
Deepthi