Hello, i have the following procedure in place in a pivot application:
a tableview is populated using Node extends List<Node>. Each node has several properties (name, date ...) . One of them is a read only unique id (named etag). One of the operations i make requires me to issue a clear() on the List<Node> immediately followed by a repopulation. I'd like all my tableviews (and possibly any other related view using the list) to automatically reselect the Nodes having same ETags as those that were selected before the reloading. Is there any way to achieve this? Some kind of listener in TableView where i could be notified the selection has changed because of a list reloading? Thank you.
