Hey guys,
I think it is a bug because the requried validation attribute is not rendered when using tag helper. Can you validate my problem?
Kendo version: 2022.1.119
Model:
[Required(ErrorMessage = "Hey, I am an error message.")]
public string Test { get; set; }
View (working example with html helper):
@Html.Kendo().TextAreaFor(x => x.Test).Rows(3)
View (not working example with tag helper):
<kendo-textarea name="Test" rows="3"></kendo-textarea>
The data-val="true" data-val-required="xxx" attributes are only rendered with html helper.