After upgrading to Smart GWT 2.5 (power edition) we have a problem with some of our ComboBoxItems:
If you select an item from the picklist with a mouse click, the picklist is closed (as expected) but then pops up again immediately. You then have to select the item again, which is annoying for the user.
For example, the following ComboBoxItem exhibits the described behavior:
Perhaps, there are already some known issues with ComboBoxItems in the current version of Smart GWT?
If you select an item from the picklist with a mouse click, the picklist is closed (as expected) but then pops up again immediately. You then have to select the item again, which is annoying for the user.
For example, the following ComboBoxItem exhibits the described behavior:
Code:
final ComboBoxItem prtId = new StyledComboBoxItem(Consts.F_PRI_PRT_ID); prtId.setOptionDataSource(DataSource.get(Consts.DS_UM_PRIVILEGE_TYPE)); prtId.setValueField(Consts.F_PRT_ID); prtId.setDisplayField(GeneratedFieldConsts.F_PRT_NAME); prtId.setSortField(Consts.F_PRT_NAME); prtId.setAutoFetchData(false); prtId.setPickListWidth(380); prtId.setDefaultToFirstOption(false); prtId.setFilterLocally(true); prtId.setRequired(true); prtId.setSelectOnFocus(true);
Comment