Won't Fix
Last Updated: 11 Mar 2016 13:26 by ADMIN
ADMIN
Milena
Created on: 02 Apr 2012 02:59
Category: InputManager
Type: Bug Report
0
FIX: A wrong position of the text in RadTextBox when spin buttons are shown and EnabledStyle-HorizontalAlign property to Right is set
This issue is related to a specific browser bug. In this case Internet Explorer does not allow changing the text alignment with JS. However, to workaround it please use the following CSS rule:

html .RadInput .riTextBox {
    text-align: right;
}

For the specific state on the control you can add the corresponding CSS class (riEnabled / riFocused / riHover) on the same selector

html .RadInput .riTextBox.riEnabled {
    text-align: right;
}
0 comments