In out MVC app, we are using a Kendo grid to display/inline edit Department information. We also display a tree view of the Department hierarchy (see below). In Chrome when changes are made to the Department information the tree view dynamically changes, in IE10 this does not occur. We noticed through debugging that in IE10 the "GetDepartmentTree' action is only fired on initial load and is never called again, even when the department page is refreshed. In Chrome this action is fired with each change to the Department information. Any ideas on what we can do to make this more cross-browser compliant?
@(Html.Kendo().TreeView()
.Name ("DepartmentTree")
.HtmlAttributes(new {@class="dept-treeview"})
.DataTextField("Name")
.DataSource(ds => ds
.Read(read => read
.Action("GetDepartmetsTree", "Administration")
.Data("GetParameters")
)
)
.LoadOnDemand(false)
)
@(Html.Kendo().TreeView()
.Name ("DepartmentTree")
.HtmlAttributes(new {@class="dept-treeview"})
.DataTextField("Name")
.DataSource(ds => ds
.Read(read => read
.Action("GetDepartmetsTree", "Administration")
.Data("GetParameters")
)
)
.LoadOnDemand(false)
)