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

pageblockTable displayed differently in different browser, some borders are missing in blank cell
Hi, pageblockTable is displayed differently in IE & Firefox & others, specifically some borders are missing in some blank cells.
Showing correctly:
How to make it display the border for all cells? i have border="1" in myVF markup.
Thanks.
Hi,
In case any field contains blank then some browsers e.g IE do not render their borders. To do so, add in each column value of the pageblocktable. So, even if the property is blank it would still insert a space and hence your borders would appear.
- Anshul Verma
All Answers
Hi,
In case any field contains blank then some browsers e.g IE do not render their borders. To do so, add in each column value of the pageblocktable. So, even if the property is blank it would still insert a space and hence your borders would appear.
- Anshul Verma
Thanks for the reply.
I tried many times and now it worked:
<apex: column value="{1.abcddd__c}" /> this caused error <apex: column value="{1.abcddd__c}" /> This did not change the display I have to use <apex:column > <apex:facet name="header">Date Achieved</apex:facet> <apex:outputField value="{!l.Date_Achieved__c}" /> </apex:column> or <apex:column headervalue="Retaled stage"> {!l.Stage__c} </apex:column>