Page 1 of 1

Right-to-Left reading & writing

Posted: Wed Jan 09, 2013 3:36 am
by YehudaV
Hi,
In my shop almost all screens are in Hebrew, which is a "right to left" language. I like to know if is a way to make all DDS conversions to use this "right to left" function in general.

I got in my previous job an explanation, but I moved to a new job and unfortunately I forgot how to make it.

Thank you.
Yehuda

Re: Right-to-Left reading & writing

Posted: Thu Jan 10, 2013 1:38 pm
by Rob
Any alpha input fields using the DDS keyword CHECK(RL) should convert correctly with the Right to Left styling.

If you want this on all input fields you could add a css file containing the following text to folder /www/profoundui/htdocs/profoundui/userdata/custom/css/ You could name the file something like direction.css

Code: Select all

.input {
direction: rtl;
}

Re: Right-to-Left reading & writing

Posted: Sun Jan 13, 2013 2:08 am
by YehudaV
Thank you Rob,

What about the labels (COLHDG)?
After the conversion some of the labels are correct and some are mixed.

We are not using the CHECK(RL) for the input fields, but the general CHECK(RLTB), which what I understood not supported by the conversion, at least there is a warning message, so it means that by adding the suggested .css would solve this issue?

Re: Right-to-Left reading & writing

Posted: Wed Jan 16, 2013 4:17 am
by YehudaV
The direction.css is working fine. You can ignore my previous question.

Thank you.