Hi,
I'm using SmartGWT 3.1p 2013-03-06 with Firefox 18 and I'm having troubles navigating with keyboard through section items. I've tested with IE 9 and it works well.
In FF when you tab to a SectionItem and press the space the SectionItem is not open.
Here's some code to reproduce it:
As a side note if you use MUTEX visibility for the form, you'll see that when pressing space on a closed SectionItem the opened one will close. But still, the activated one is not opened.
I'm using SmartGWT 3.1p 2013-03-06 with Firefox 18 and I'm having troubles navigating with keyboard through section items. I've tested with IE 9 and it works well.
In FF when you tab to a SectionItem and press the space the SectionItem is not open.
Here's some code to reproduce it:
Code:
public void onModuleLoad() {
SC.setScreenReaderMode(true);
drawTestSections();
}
private void drawTestSections() {
DynamicForm form = new DynamicForm();
form.setSectionVisibilityMode(VisibilityMode.MUTEX);
TextItem textItem1 = new TextItem("item1","Item 1");
TextItem textItem2 = new TextItem("item2","Item 2");
TextItem textItem3 = new TextItem("item3","Item 3");
SectionItem sectionItem1 = new SectionItem("section1");
sectionItem1.setItemIds("item1");
SectionItem sectionItem2 = new SectionItem("section2");
sectionItem2.setItemIds("item2");
SectionItem sectionItem3 = new SectionItem("section3");
sectionItem3.setItemIds("item3");
form.setItems(sectionItem1, textItem1, sectionItem2, textItem2, sectionItem3, textItem3);
form.setHeight(640);
form.setWidth(480);
form.draw();
}
As a side note if you use MUTEX visibility for the form, you'll see that when pressing space on a closed SectionItem the opened one will close. But still, the activated one is not opened.
Comment