Hi,
I'm trying to set the maximum length of input characters using HtmlAttributes in a form. But it seems it doesn't work; I can still type more than 4 characters. Here is an example in REPL:
https://netcorerepl.telerik.com/wmkmbflo51nxiZPb01
i.Add()
.Field(f => f.FirstName)
.Editor(e=> e.TextBox().HtmlAttributes(new { maxlength = "4" }))
.Label(l => l.Text("First Name:"));
Thanks,
Humberto