This question is locked. New answers and comments are not allowed.
Hello,
Currently we have a problem where we have a numeric text box setup and if a user pastes in a value (ie: 20) and then decides he wants to change it and tries to paste in 30, it then appends the 30 and the result is 2030. How can we disable this? If a user pastes in 30 over top of the 20, it should put 30 not 2030!
Thanks
jon
Currently we have a problem where we have a numeric text box setup and if a user pastes in a value (ie: 20) and then decides he wants to change it and tries to paste in 30, it then appends the 30 and the result is 2030. How can we disable this? If a user pastes in 30 over top of the 20, it should put 30 not 2030!
@(Html.Telerik().NumericTextBox() .Name("purchaseOrderId") .MinValue(0) .Spinners(false) .HtmlAttributes(new { style = "padding:2px;" }) .InputHtmlAttributes(new { style = "width:150px" }) .EmptyMessage("") .NumberGroupSeparator("") .DecimalDigits(0) )Thanks
jon