- remote pupulation of GWT listbox
- AsyncCallback<List<Option>> callback = new AsyncCallback<List<Option>>() {
- public void onFailure(Throwable caught) {
- processError(caught);
- }
- public void onSuccess(List<Option> result) {
- updateListBox(result);
- showListBox();
- }
- };
- myRemoteService.getOptions(callback);