Hi,
Is it possible to use tag helpers with model validation using Kendo's validation framework?
C#
[Required]public string Title { get; set; }
HTML
<kendo-maskedtextbox for="Title"></kendo-maskedtextbox><span data-for="Title" class="k-invalid-msg"></span>
JS
var validator = $("#changeForm").data("kendoValidator");validator.validate();
I can't seem to get the required validation to appear. The form posts even if the control is blank. Can anyone give me a working example of model validation with tag helpers in .NET Core?
Thanks!
