treegrid - hide rows

Hello,



I have an implementation of a treegrid. Is it possible to hide specific nodes from the view? Also how about hiding entire rows?



The rows should be there if they are accessed by JS or the api but not viewable on the browser.







Thanks,

You can use
    grid.setRowHidden(…
or
    grid.filterBy(…

To hide some rows in grid ( they will be accessible by API, but not visible in grid|treegrid )
Please beware that usage of setRowHidden can cause unexpected view in case of paging|smart rendering modes.