You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
Hi,
as far as I can see a GWT Tree has no ValueChangeHandler by default (for modifying elements in the tree). Therefore I'm trying to extend the Tree and add a ValueChangeHandlermy myself. But it never get's called:
class MyTree extends Tree implements ValueChangeHandler<String> {
//never gets called @Override public void onValueChange(ValueChangeEvent<String> event) { System.out.println("value changed"); } }
From debugging I can see that the value in the tree items is already changed by this! But it is not reflected in the tree in GUI. So I probably have to write something in the onChangeHandler to update the tree visually. But as I said, onValueChange never gets called...