We have a performance issue using ejTreeView in IE 11, code excerpt below. The SQL Server query returns the data in less than 1 second, 460 records, up to 4 levels.
Chrome loads the TreeView in less than 1 second.
IE11 takes at least 4 seconds.
Are you able to shed any light on what may be causing this?
function DisplayTreeView(data) {
DBS$("#DET-treeview").ejTreeView({
fields: {
//id: "EntityId", parentId: "ParentEntityId", text: "EntityName", expanded: false, imageUrl: "EntityImage", isChecked: "Checked", query: "EntityId",
id: "EntityId", parentId: "ParentEntityId", text: "EntityName", expanded: false, imageUrl: "EntityImage", query: "EntityId",
dataSource: data
},
showCheckbox: true,
enablePersistence: false
});
var treeObj = DBS$("#DET-treeview").data("ejTreeView");
treeObj.autoCheck = false;
treeObj.checkAll();
treeObj.autoCheck = true;
}