if you encounter slow rendering (on icefaces tree for example) and generally when you code using icefaces framework, be sure that any html component you write has an id or has an icefaces component as parent.
In fact, icefaces client module send ajax request to the icefaces server module in aim to retrieve DOM changes. icefaces server module try to look for dom changes, and when each element has changed but have no id, it looks for its parent in the dom and insert all children of this parent as changed.

In my case i have a page with two elements: a <div>…</div> and just after an ...
Unfortenatly, i don’t put an id to my <div>. So when i expand one node in the i got all tree nodes sent as updates elements in the icefaces ajax response. setting an id or converting your <div> to fix problem.

@see