It looks like the performance of the following function is really bad.
treeView.append(children, parent);
Here treeView is Kendo UI Treeview, parent is container node for children and children is array of approximately 150 new nodes (my scenario).
And this code executes more than 7 seconds.
I guess the append function is not well implemented for a collection of items, so maybe there are some workarounds with generating html through jQuery, but Kendo UI Treeview should also know about new nodes to process future expand events for new nodes correctly. Is there any way to improve the performance of the code above?
Thank you, Ihor