Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page that's direction oriented and so I usually define the dir tag for an entire form.

I have a few h:panelgroup objects who are supposed to group some components in a row in a table.

Problem is, some of these h:panelGroup components are supposed to remain in ltr direction no matter what they inherit but the h:panelGroup component doesn't support the dir tag.

I can use a h:panelGrid with more columns than components to resolve this, but it seems odd that there is no cleaner solution...

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

Add styleClass attribute, and use the css direction property.

.ltr {
    direction: ltr;
}
.rtl {
    direction: rtl;
}

So you can use styleClass="rtl", and styleClass="ltr".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.