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 

outputtext alignment

Code:
<apex:outputtext dir="RTL" value="Total {!OpenTotal}"/>

 
The above code does not align my text to the right (but as far as I can tell from the documentation, it should).
 
As a workaround I am using standard html such as this:
 
Code:
<table width="100%"><tr align="right"><td><b>Total {!OpenTotal}</b></td></tr></table>

 Can this be confirmed as a bug?
Best Answer chosen by Admin (Salesforce Developers) 
GerhardNewman2GerhardNewman2
Thanks Ron.

All Answers

Ron HessRon Hess
I've confirmed that this is not a supported feature (DIR attribute in components), we will remove it from the docs.

Your use of Align is the best way to go.


Message Edited by Ron Hess on 06-05-2008 02:54 PM
GerhardNewman2GerhardNewman2
Thanks Ron.
This was selected as the best answer