Setting the HeaderHtmlAttributes of the TreeList throws a Null reference exception.
@(Html.Kendo().TreeList<Kendo.Mvc.Examples.Models.TreeList.EmployeeDirectoryModel>()
.Name("treelist")
.Columns(columns =>
{
columns.Group(group => group
.Title("Personal Info")
.HeaderHtmlAttributes(new {@class="myClass"})
.Columns(info =>
{
//...
})
);
})
Null reference exception is thrown.
The Html attributes should be added to the header.