Hi,
When I paste the value "12,234" into the Numeric Input box (see below), the control thinks that the comma is a decimal place. This is very confusing for our users, as they have to remove the decimal place. How can I fix this?
Thanks,
Tim
When I paste the value "12,234" into the Numeric Input box (see below), the control thinks that the comma is a decimal place. This is very confusing for our users, as they have to remove the decimal place. How can I fix this?
Thanks,
Tim
<telerik:RadNumericTextBox ID="txtSalaryTo" runat="server" ShowSpinButtons="true"> |
<NumberFormat DecimalDigits="0" DecimalSeparator="." GroupSeparator="," GroupSizes="3" AllowRounding="false" /> |
<IncrementSettings Step="1000" /> |
<ClientEvents OnKeyPress="KeyPress_Salary" /> |
</telerik:RadNumericTextBox> |