Java - RichFaces - RTL

I am looking for Java "Faces" which supports RTL user interfaces (from right to left). The only library I've checked so far is RichFaces . It does not seem to support it initially.

What is a good resource that talks about this problem?

What other "Faces" can I recommend to support RTL user interfaces?

+4
source share
4 answers

RichFaces components support the dir attribute.

+4
source

Standard JSF components have been doing this for a long time. They simply support all HTML attributes, including the dir attribute, which you can set to "rtl" . I would be surprised if any of the third-party component libraries did not inherit it.

+4
source

In richfaces, it supports dir = "rtl" in all components, yes, it does not say that you cannot set the dir attribute , but when you put it on, it will not display correctly. To do this, in richfaces you need to redefine its style, replacing it from left to right and left to right, I checked it for simple components, but for others, such as a tree, such as a menu, it will not be as simple as I say. I have no idea which other components will support this.

By the way, I speak for 3.1.5. GA.

+1
source

I did not use it on my own, but I was just googling about it, and wikipedia claims to be a candidate: http://myfaces.apache.org/trinidad/

+1
source

All Articles