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
smitrasmitra 

Collapsible feature in Visualforce page

Can anyone give an example of collapsible feature in salesforce
Best Answer chosen by smitra
PratikPratik (Salesforce Developers) 
Hi Smitra

<apex:page >

<apex:pageBlock id="block1">

    <apex:pageBlockSection  collapsible="true" title="Title">

          </apex:pageBlockSection>

This will collapse the pageblocksection.

Thanks,
Pratik