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

Fixing table width or column width
<apex:pageBlock > <apex:repeat value="{!pList}" var="x"> <apex:pageBlockSection title="{!x}" columns="1" > <apex:repeat value="{!pList[x]}" var="y"> <apex:pageBlockSection title="{!y}" columns="8" > <apex:repeat value="{!pList[x][y]}" var="z"> <apex:dataTable value="{!pList[x][y][z]}" var="z" border="1" width="12.5%" > <apex:column> 1 </apex:column> <apex:column> 2 </apex:column> </apex:dataTable> </apex:repeat> </apex:pageBlockSection> </apex:repeat> </apex:pageBlockSection> </apex:repeat> </apex:pageBlock>
I have a above snippet, which tries to display blocks in manner in second diagram but it displays in manner in first diagram.
Is there way i can fix the table width.
All Answers
well, i have already tried px.
I alslo tried, columnsWidth in dataTable. But all time its samme result.
Thank you very much Saransh. I cant paste code here, unfortunately.