I have a numericTextBox and I would like the user to be able to enter a percentage in either of two formats. The end result should always display the number as a percentage but store it as a decimal. For example, the user should be able to either enter .10 or 10% in the box. The screen should then show 10% when the user tabs out but send .1 when the form is submitted. Here is what I have so far:
$("#myPercentageChoice").kendoNumericTextBox({ format: "p1", spinners: false, value: 0, decimals: 3});