Hello,
There seems to be a problem with the SelectItem widget when ScreenReaderMode is turned on. I have the following SelectItem:
Everything works as expected when ScreenReaderMode is turned off. As soon as I turn it on, I am no longer able to select multiple items, and the SelectItem selects an item as soon as I open the dropdown.
I am using SmartGWT 3.0 EE and Firefox.
Thanks in advance!
There seems to be a problem with the SelectItem widget when ScreenReaderMode is turned on. I have the following SelectItem:
Code:
SelectItem selectItem = new SelectItem(); selectItem.setMultiple(true); selectItem.setMultipleAppearance(MultipleAppearance.PICKLIST); selectItem.setAllowEmpty(true); selectItem.setOptionDataSource(DataSource.get("datasource")); listGrid.getField("field").setFilterEditorType(selectItem);
I am using SmartGWT 3.0 EE and Firefox.
Thanks in advance!
Comment