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

How to display pageblocksection on selecting a value from the picklist using rendered?
Hi,
i am new to salesforce i want to creat an visualforce page to display pageblocksection on selecting a value from the picklist using rendered.
But when i am selecting Energy value in pickList it is not showing NoofEmployees field.
Can you people please guide me
visualforce:
<apex:page standardController="Account" extensions="HidePageBlock">
<apex:form >
<apex:pageBlock title="Industry">
<apex:pageBlockSection title="Options">
<apex:inputField value="{!Account.Industry}"/>
<actionsupport event='onchange' rerender='in1'/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Result" id="in1" rendered="{!IF(Account.Industry == 'Energy',true,false)}">
<apex:inputField value="{!Account.NumberOfEmployees}" />
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Contoller Extension:
public class HidePageBlock {
public HidePageBlock(ApexPages.StandardController controller)
{
}
}
Thanks and Regards
i am new to salesforce i want to creat an visualforce page to display pageblocksection on selecting a value from the picklist using rendered.
But when i am selecting Energy value in pickList it is not showing NoofEmployees field.
Can you people please guide me
visualforce:
<apex:page standardController="Account" extensions="HidePageBlock">
<apex:form >
<apex:pageBlock title="Industry">
<apex:pageBlockSection title="Options">
<apex:inputField value="{!Account.Industry}"/>
<actionsupport event='onchange' rerender='in1'/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Result" id="in1" rendered="{!IF(Account.Industry == 'Energy',true,false)}">
<apex:inputField value="{!Account.NumberOfEmployees}" />
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Contoller Extension:
public class HidePageBlock {
public HidePageBlock(ApexPages.StandardController controller)
{
}
}
Thanks and Regards
Greetings to you!
Please try the below code, I have tested in my org and it is working fine. Kindly modify the code as per your requirement.
Visualforce:
Controller:
I hope it helps you.
Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.
Thanks and Regards,
Khan Anas