I currently have a grid that has a col type of tree in the first column. I want to be able to use the dynamic loading with paging on this grid. With the tree type included, however, it ignores any dynamic loading and renders the first chunk of data only. If I change the type to ‘ro’, it works fine.
myGrid.setColTypes(“tree,ro,ro,”); - does not work
myGrid.setColTypes(“ro,ro,ro,”); - works
Is there anything else I can do to get this working with the tree col type?
Thank you