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

How to display two Pageblocktables in same pageblocksection side by side ????
Hi,
can any one help what is the attribute that i need to set for displaying two Pageblocktables in same pageblocksection side by side.
Thanks&Regards,
Veerendra
<apex:page standardController="Account">
<apex:pageBlock >
<apex:pageBlockSection columns="4">
<apex:pageBlockTable value="{!Account}" var="a">
<apex:column headerValue="test"/>
</apex:pageBlockTable>
<apex:pageBlockTable value="{!Account}" var="b">
<apex:column headerValue="test"/>
</apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>
Above is what you need
All Answers
<apex:page standardController="Account">
<apex:pageBlock >
<apex:pageBlockSection columns="4">
<apex:pageBlockTable value="{!Account}" var="a">
<apex:column headerValue="test"/>
</apex:pageBlockTable>
<apex:pageBlockTable value="{!Account}" var="b">
<apex:column headerValue="test"/>
</apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>
Above is what you need
Thanks a lot dude