How to filter out the Tree Nodes (grandchildren level) from tree viewer using View filter in SWT.I want to filter out the grand children node from the treeviewer.

link|improve this question

50% accept rate
feedback

2 Answers

You just can filter your items in Container.

ArrayList<Nodes> nodeList;

Then add container to treeView;

link|improve this answer
feedback

The Logic would be filter children in ContentProvider for the tree view

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.