NumericTextBox TagHelper Overview
The Telerik UI NumericTextBox TagHelper for ASP.NET Core is a server-side wrapper for the Kendo UI MultiSelect widget.
The NumericTextBox converts an input
element into a numeric, percentage, or currency textbox.
The NumericTextBox is part of Telerik UI for ASP.NET Core, a
professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the NumericTextBox
The following example demonstrates how to define the NumericTextBox by using the NumericTextBox TagHelper.
<kendo-numerictextbox name="numeric"></kendo-numerictextbox>
You can also bind the NumericTextBox to a particular model field by using the for
attribute. This is equivalent to using the Html.Kendo().NumericTextBoxFor<decimal>()
HtmlHelper.
@model Kendo.Mvc.Examples.Models
<kendo-numerictextbox for="CustomerID"></kendo-numerictextbox>
Basic Configuration
The NumericTextBox TagHelper supports all the configuration options that the HtmlHelper does. They are passed as attributes of the tag.
@(Html.Kendo().NumericTextBox<decimal>()
.Name("currency")
.Format("c")
.Min(0)
.Enable(true)
.Max(100)
.Value(30)
)
<kendo-numerictextbox name="currency" format="c" min="0"
enable="true" max="100" value="30">
</kendo-numerictextbox>