我遇到了组合框/简单组合框触发字段在 IE-8 中的第一次触发单击时未加载存储数据的问题。需要再次单击以填充下拉列表。Firefox 没有这个问题并且可以按需要工作(在第一次点击时加载数据)。任何人都知道这个问题或如何解决它?
SimpleComboBox<String> stateComboBox = new SimpleComboBox<String>()
stateComboBox.setEmptyText("Select");
stateComboBox.setTypeAhead(true);
stateComboBox.setId("state");
stateComboBox.setItemId("state");
stateComboBox.setForceSelection(true);
stateComboBox.setWidth(65);
stateComboBox.setAllowBlank(false);
stateComboBox.setTriggerAction(TriggerAction.ALL);
stateComboBox.setQueryDelay(0);