Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SectionItem aren't expanding with keyboard in Firefox

    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:

    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.

    #2
    We've made a change to address this issue in the 3.1p and 4.0d branches. Please try the next nightly build (dated March 8)

    Regards
    Isomorphic Software

    Comment


      #3
      Hello,
      I've just made some tests with 3.1p-2013-03-08 and it's working in Firefox.
      Thanks,
      Cédric.

      Comment

      Working...
      X