我有一个ComboBox
绑定到 a的 GXTListStore
并且有一个addSelectionHandler
被称为工作正常的 GXT。我也用过combo.setEmptyText("Select an item..")
。
但是,当用户进行选择时,我希望ComboBox
返回其“无选择”状态。如何让它返回以显示“选择一个项目..”?
StProperties props = GWT.create(StProperties.class);
ListStore<St> sts = new ListStore<St>(combo.id());
combo = new ComboBox<St>(sts, props.name());
combo.setTypeAhead(true);
combo.setTriggerAction(TriggerAction.ALL);
addHandlersForEventObservation(combo,props.name());
...
combo.addSelectionHandler(new SelectionHandler<T>() {
public void onSelection(SelectionEvent<T> event) {
System.out.println("value selected:"+event.getSelectedItem());
// handle selection
// unselect item in combo here ---
}
});