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
Pradeep RajuPradeep Raju 

How to have create a VF Page with 2 columns in a section with left part having 2 input fields & right side with values populated from repeat tag ?

Sonam_SFDCSonam_SFDC
I suppose you can create a pageblocktable and use column tag to differentiate between the column values:
http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_pageBlockTable.htm

The above link has sample code, let me knwo if you have already tried this - also pls share your code.
Edwin VijayEdwin Vijay
Try using the PageBlockSection and the PageBlockSectionItem tags. Something like this, note that the syntax might not be correct

<apex:pageblocksection columns="2">
<apex:pageblocksectiontem>
      <apex:inputfiled.....>
</apex:pageblocksectionitem>
<apex:pageblocksectiontem>
      <apex:repeat> ..... </apex:repeat>
</apex:pageblocksectionitem>
<apex:pageblocksectiontem>
      <apex:inputfiled.....>
</apex:pageblocksectionitem>
</apex:pageblocksection>

http://www.forcetree.com/ (http://www.forcetree.com/" target="_blank)
Pradeep RajuPradeep Raju
Hi Forcetree.com

Problem with that is if list size increases the gap between fields is increasing in left column.

regards,
pradeep.