Hello,
I have a big issue: I keep a reference to a Tree object in the repository, searching it dynamically for TreeItem children.
The problem is, the Tree's state is only valid at the moment of retrieving the Tree property from repository (creating the adapter basically).
When the tree changes, these changes are not reflected automatically, only when a new instance of the repository item is created.
This makes it very hard to cope with various scenarios i'm trying to deal with (basically for every change in UI, i will have to create a new adapter to be able to find the element in the tree).
What can i do? is there any way to have the TreeItem automagically update itself somehow?