New to Kendo UI for jQuery? Start a free 30-day trial
Formats
Updated on Dec 10, 2025
The NumericTextBox accepts only numeric entries and its specific format defines the conversion data type—for example, currency or percentage.
The following example demonstrates how to render a currency NumericTextBox.
html
<input id="textbox">
<script>
$("#textbox").kendoNumericTextBox({
format: "c2" // Define the currency format signified with the letter "c" and a two-digit precision.
});
</script>
The following example demonstrates how to render a percentage NumericTextBox.
html
<input id="textbox">
<script>
$("#textbox").kendoNumericTextBox({
format: "p", // Define the percentage format signified with the letter "p".
value: 0.15 // 15 %
});
</script>