Javafx 2 TreeView Filtering
javafx-2, treeview
Solution
There is no special filter, provided by JFX.
So you should implement it by yourself.
The only support from JFX you have - tracking of collection of TreeItems' items. When you add or remove an item, it will be added or removed. But adding or removing from collections you implement yourself.
Problem
How is it possible to filter Nodes in a JavaFX 2 `TreeView`? I have a `TextField` and I want to filter all Nodes (for example node labels) based on the content of the `TextField`. Thanks.