Hello,
The performances of the treelist component are very bad if this component contains more than 1000 rows.
To illustrate this problem, I created a small script: http://dojo.telerik.com/UGUXi
This script loads a treelist with 2 columns and 8000 rows.
var data = [{ name: "Jane Doe", age: 30 }, { name: "John Doe", age: 33 }...];
var treeList = $("#treeList").data("kendoTreeList");
treeList.dataSource.success(data);
With Chrome, the rendering takes 1903 ms.
But with Internet Explore 11, the same tree rendering takes 24160 ms.
Why the treelist rendering is so slow with IE?
For information, I tested the same script with the very last version of Kendoui (2014.3.1125) but unsuccessfully.
Any tips are welcome because this problem is quite critical for me.
Thanks,
Luc