Activity Forums Salesforce® Discussions What is the use of <apex: pageblocksectionitem> tag in the Salesforce Visualforce Page?

  • Shweta

    Member
    January 29, 2020 at 3:19 pm

    <apex: pageblocksectionitem> : It is used to define a single piece of data in an page block section that takes up one column in a row. It can include up to two child components.

    Example:

    <apex:pageBlock title="Block" >
                 <apex:pageBlockSection title="my section">
                    <apex:pageBlockSectionItem >
                    	<apex:outputLabel >My Name</apex:outputLabel>
                    </apex:pageBlockSectionItem>       
                     <apex:pageBlockSectionItem >
                    	<apex:outputLabel >Address</apex:outputLabel>
                     </apex:pageBlockSectionItem>
                </apex:pageBlockSection> 
            </apex:pageBlock>

     

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos