I'm dealing with a situation specified here in the jQuery world: https://docs.telerik.com/kendo-ui/knowledge-base/combobox-invalid-form-control-is-not-focusable
I'm having a similar issue but am using a combination of tag-helpers and Html extension methods to render controls. Kendo Text boxes are getting client-validated properly, but DropDowns are not, and also some textboxes that are initially hidden are also facing the same issue.
Hi,
Do you set the required attribute in the configuration of the component? If you do, please test to use the `for` and set the required option via data annotations.
e.g.
// tag helper config <kendo-dropdownlist for="Orders" // model [Required] public List<SelectItem> Orders { get; set; }