Formats
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.Kendo().NumericTextBox()
.Name("currency")
.Format("c")
)
<kendo-numerictextbox name="numeric"
format="c">
</kendo-numerictextbox>
The following example demonstrates how to render a percentage NumericTextBox.
@(Html.Kendo().NumericTextBox()
.Name("percentage")
.Format("p0")
)
<kendo-numerictextbox name="percentage"
format="p0">
</kendo-numerictextbox>
More examples of the available formatting options you can find here: