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
GerhardNewman2GerhardNewman2 

apex:column headerdir="RTL" does not seem to work

Code:
<apex:pageBlock title="Lost Opportunites">
    <apex:pageBlockTable value="{!LostOpportunities}" var="aOpportunity" width="100%" >
                <apex:column headervalue="Opportunity Name" value="{!aOpportunity.Name}"/>
                <apex:column headervalue="Stage" value="{!aOpportunity.Stagename}"/>
                <apex:column headerdir="RTL" headervalue="Net Revenue" dir="RTL" value="{!aOpportunity.Sum_Net_Revenue__c}"/>
    </apex:pageBlockTable >
</apex:pageBlock>

 This code results in the last column having the header left justified and the value right justified.  I want both header and value to be right justified (RTL).  Have I done this wrong or is it a bug?

 
 


Message Edited by GerhardNewman2 on 06-06-2008 12:35 AM
Ron HessRon Hess
This does look strange, i'll ask around, it may be a missing feature :smileyhappy:
patskepatske
any update on this one? I kind of needed it to work also :(

- Patrick
patskepatske
quick hack around it if you need GerhardNewman2 is to make the width of the last column you want as LTR a little wider for example you could make your
<apex:column headervalue="Stage" value="{!aOpportunity.Stagename}"/> column a bit wider with the width attribute


eg.
Code:
<apex:column width="70%" headervalue="Stage" value="{!aOpportunity.Stagename}"/>

 
Then just make your last two columns dir="RTL" ... it's dirty I know.. just play with percentages you may get something that works for you
if your values are fairly predictable.



a_Ba_B
You can set text-align property using in a headerclass.

<br> .columnHeader {<br> font-size: 1em;<br> font-weight: bold;<br> text-align: right;<br> }<br><style><br><br><apex:column value="{!vol.BTD__c}" dir="RTL" headerclass="columnHeader"/>