When CheckBox is initialized by using Html helper in Telerik UI MVC app, the.HtmlAttributes() configuration applies the attributes to the hidden input field instead of the Checkbox.
Sample Checkbox configuration :
@Html.Kendo().CheckBox().Name("mybox").HtmlAttributes(new { onclick = "MyHandler()" });
The attached attributes are applied to the hidden input field, not to the checkbox itself.
The attached attributes are applied to the hidden input field, not to the checkbox itself.
The attached attributes are applied to the checkbox.