I have a GWT-EXT ComboBox
having some 3-5 value in my project.
Can anyboy help me to find value change event(or selection event) ?
Or any other way to get notified with GWT-EXT ComboBox
state change.
Asked
Active
Viewed 5,707 times
2

Jaykishan
- 1,409
- 1
- 15
- 26
-
There's no `ComboBox` in GWT, are you using a third-party widget library? – Thomas Broyer Oct 16 '13 at 13:57
1 Answers
5
If you are reffering to Listbox
dropBox.addChangeHandler(new ChangeHandler() {
public void onChange(ChangeEvent event) {
//do something
}
});

Suresh Atta
- 120,458
- 37
- 198
- 307
-
-
Thanks buddy for your support, we've solved the problem with given answer – Jaykishan Oct 17 '13 at 05:53
-
But seriously version is not at all problem here.You just don't what you are using. There is nothing like Combobox in gwt. There is only ListBox. You are using `GWT EXT` a third party gwt library. – Suresh Atta Oct 18 '13 at 14:24
-
@SURESHATTA Yes bro, lately i came to know about GWT-EXT in my project – Jaykishan Mar 25 '14 at 12:11