This question is locked. New answers and comments are not allowed.
Im trying to add an Html Attribute to a Telerik DatePicker. The Html Attribute name is "data-bind". Since the Telerik API for adding attributes only accepts an object (not a dictionary like mvc html helpers) there is no valid way for me to have the Telerik control render this attribute. The attribute is needed for KnockoutJS a client side databinding javascript library. Can we get some support for dictionaries Telerik?
Example)
This does not work. :(
Example)
@Html.Telerik().DatePickerFor(m => m).HtmlAttributes(new {data-bind = "enable:isActive"})This does not work. :(