New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Adding a Maximum Length Validation to the Editor
Environment
Product | Telerik UI for ASP.NET MVC Editor |
Progress Telerik UI for ASP.NET MVC version | 2024.4.1112 |
Description
How can I validate that the value of the Editor does not exceed a pre-defined maximum length?
Solution
To validate the Editor value, use the Kendo UI for jQuery Validator component with custom validation rules.
- Set the
data_maxtextlength
anddata_maxtextlength_msg
attributes through theHtmlAttributes
option of the Editor. - Extend the Validator with custom rules.
Razor
<form>
@(Html.Kendo().Editor()
.Name("editor")
.HtmlAttributes(new { data_maxtextlength="50", data_maxtextlength_msg="Text must be shorter than 50 chars" })
.Value("Lorem ipsum dolor sit amet. Lorem ipsum dolor sit.")
)
<button class="k-button k-button-md k-rounded-md k-button-solid k-button-solid-primary">Submit</button>
</form>