I'm using a series of RadNumericTextBox controls in a RadGrid GridTemplateColumn's EditItemTemplate. Even if I set the HorizontalAlign to Right, the value still appears aligned to the left of the box. Is there a way to force the values to appear on the right side of the box on entry?
Here's the markup of my control:
Here's the markup of my control:
| <telerik:RadNumericTextBox ID="FooEdit" runat="server" Type="Number" Width="70px" MinValue="0" > |
| <EnabledStyle HorizontalAlign="Right" /> |
| <NumberFormat DecimalDigits="0" /> |
| </telerik:RadNumericTextBox> |