3 Answers, 1 is accepted
0
Hi Pouya ir,
The observed behavior is normal, because in RTL mode all text content is right aligned by default. You can test with an asp:TextBox to see the same.
Please use the following property:
<telerik:RadNumericTextBox EnabledStyle-HorizontalAlign="Left" />
or add this CSS rule to your page:
.riTextBox
{
text-align:left;
}
Best wishes,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
The observed behavior is normal, because in RTL mode all text content is right aligned by default. You can test with an asp:TextBox to see the same.
Please use the following property:
<telerik:RadNumericTextBox EnabledStyle-HorizontalAlign="Left" />
or add this CSS rule to your page:
.riTextBox
{
text-align:left;
}
Best wishes,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
0
Hello Pouya ir,
Try setting appropriate formatting patterns:
<telerik:RadNumericTextBox>
<NumberFormat PositivePattern="" NegativePattern="" />
</telerik:RadNumericTextBox>
http://www.telerik.com/help/aspnet-ajax/input_radnumerictextboxformatting.html
http://demos.telerik.com/aspnet-ajax/input/examples/radnumerictextbox/firstlook/defaultcs.aspx
Sincerely yours,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Try setting appropriate formatting patterns:
<telerik:RadNumericTextBox>
<NumberFormat PositivePattern="" NegativePattern="" />
</telerik:RadNumericTextBox>
http://www.telerik.com/help/aspnet-ajax/input_radnumerictextboxformatting.html
http://demos.telerik.com/aspnet-ajax/input/examples/radnumerictextbox/firstlook/defaultcs.aspx
Sincerely yours,
Dimo
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.