Description
The TreeDataView has a method "public void initialize()" for resetting private members, but it seems it is not called when the component is returned to the pool.
This causes a memory leak as m_objTreeRowObject can hold a reference to a TreeRowObject Object and thus to an entire tree structure.
I propose that the component implement the PageDetachListener interface and calls initialize:
public void pageDetached(PageEvent event)
{ initialize(); }Thank you