You need to sign in to do that
Don't have an account?

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
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
All Answers
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