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

pageblocksectionitems having 2 child components error is seen?
<apex:pageBlockSectionItem> may have no more than 2 child components
this error is seen what to do?
this error is seen what to do?
You need to sign in to do that
Don't have an account?
This is correct -
<apex:pageBlockSectionItem>
<apex:outputPanel>....</apex:outputPanel>
<apex:outputPanel>....</apex:outputPanel>
</apex:pageBlockSectionItem>
This is wrong -
<apex:pageBlockSectionItem>
<apex:outputPanel>....</apex:outputPanel>
<apex:outputPanel>....</apex:outputPanel>
<apex:outputPanel>....</apex:outputPanel>
</apex:pageBlockSectionItem>
in this one what i am doing wrong?
<apex:pageBlockSectionItem>
<apex:outputlabel>industry</apex:outputlabel>/>
<apex:inputField value="{!account.industry}"/>
</apex:pageBlockSectionItem>