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
Baguiar2Baguiar2 

Calendar field popup issue in VF page section

HI there,

 

Any Ideas why the calendar gets chopped off when in a field within a  <table> ? It does not happen within a <apex:pageblocktable>, but that would not work for me as I'm using the table to align fields in 03 columns. :)

 

 

And this is pretty much how the table goes in the VF:

 

<apex:form id="f1" >
<table width="90%" columns="3" align="left">

<td align="right"><b>PM Owner: </b></td><td align="left"><apex:inputField value="{!Projects__c.PM_Owner__c}" /></td>
<td align="right"><b>PM Start date:</b></td><td align="left"><apex:inputField value="{!Projects__c.PM_Start_Date__c}"  /></td>

.. and so on...

 Any ideas?  Thanks!!

 

B

Suresh RaghuramSuresh Raghuram

if the pageblock table did not allow more than 3 columns  you can prefer

<apex:pageblocksection  columns="3">

<apex:pageblocksectionItem></apex:pageblocksectionItem>

</apex:pageblocksection >

 

If it solves your problem, please mark it as answer