New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Adding a Maximum Length Validation to the Editor

Environment

ProductTelerik UI for ASP.NET MVC Editor
Progress Telerik UI for ASP.NET MVC version2024.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.

  1. Set the data_maxtextlength and data_maxtextlength_msg attributes through the HtmlAttributes option of the Editor.
  2. 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>

More ASP.NET MVC Editor Resources

See Also