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
Olivia FordeOlivia Forde 

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">
PratikPratik (Salesforce Developers) 
Hi Olivia,

<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
Olivia FordeOlivia Forde
Hi
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>