This question is locked. New answers and comments are not allowed.
For the following, how can I allow the user to type a value without a leading zero? ".1" should be a perfectly valid entry for this, but it is not allowed.
@Html.Telerik()
.NumericTextBoxFor(model => model.Item.PValue)
.DecimalDigits(2)
.MaxValue(1)
.MinValue(0)
.IncrementStep((decimal).1)