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

PageBlock & panelGrid
I have the following code to display 33 tick boxes and their labels but I cannot get the column number combintaion correct top display properly on teh VF page (this is code someone else wrote). I am changing the number of columns but I cannot see the correlation between what I enter and what I display.
<apex:pageBlockSection title="BU's" columns="1" >
<apex:panelGrid columns="1">
<apex:pageBlockSection title="BU's" columns="1" >
<apex:panelGrid columns="1">
<apex:pageBlockSection title="BU's" columns="1" >
<apex:panelGrid columns="1">
The above code is for pageblocksection and panel.Will you please post the the VF page code so we can help you.
Thanks,
Pratik
I then have 33 of these
<apex:panelGroup >
<apex:panelGroup >
<apex:inputCheckbox label="CA" value="{!BusUnits['CA']}">
<apex:actionSupport event="onchange" rerender="BU_Options,BU_Codes2"/>
</apex:inputCheckbox>
<apex:outputLabel value="CA"/>
</apex:panelGroup>