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
Deepika kmDeepika km 

Visual force apex page component "setup" attribute

Hi,

Could any one explain the use of "setup" attribute in apex page component.
I dont see any difference in the view for below examples.
Ex:
 <apex:page setup="false">
          <apex:pageBlock title="PB1"></apex:pageBlock>
</apex:page>

<apex:page>
         <apex:pageBlock title="PB1"></apex:pageBlock>
</apex:page>

Thanks
Best Answer chosen by Deepika km
Grazitti TeamGrazitti Team
As the name suggests setup="true" should render the left side bar in your page which you get by clicking your name -> Setup

User-added image

All Answers

Grazitti TeamGrazitti Team
As the name suggests setup="true" should render the left side bar in your page which you get by clicking your name -> Setup

User-added image
This was selected as the best answer
Deepika kmDeepika km
Hi,

Thank You for quick reply. 
My assumption was ,When the setup="false" it should hide the visibility of "setup" link itself.
Now i understood the behaviour of "setup" attribute.

Thanks