Kendo Template using kendoNumericTextBox

114 Views Asked by At

Im using kendo template popup for my grid editing and I want to use kendoNumericTextBox for input validate, any idea how to do? DEMO DOJO

$('#percentage').kendoNumericTextBox({
    spinners: false,
    restrictDecimals: true,
    round: false
});
1

There are 1 best solutions below

0
CMartins On

format: "c0" is the right format

$("#percentage").kendoNumericTextBox({
   format: "c0"
});

Documentation