Hi,

I have an textfield which has both hebrew and english inputs,

I've done the following:

<ext:TextField ID="TextFieldCredits" BaseBodyCls="rtl" FieldBodyCls="rtl" runat="server" FieldLabel="Credits" Hidden="true"/>

where rtl is:
.rtl
{
direction: rtl;
text-align: right;
}


Now, when user inputs a text like this following "hhhh שלום מה"

When i read in on the server side i get "שלום מה hhhh"

What was the view before the "rtl" addition.

What am i doing wrong?