Announcement

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

    MultipleSelect & ScreenReaderMode

    Hello,

    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);
    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!

    #2
    I've noticed this as well for my project.

    Comment


      #3
      Not surprising azuniga, since it's the same project :)

      Could either of you fill out the rest of the version information the forums prompts you for (specific versions).

      Also, is this happening only in the FilterEditor or elsewhere?

      Do you have any 3rd-party libraries in your project?

      Comment


        #4
        SmartClient Version: v8.2p_2012-04-30/EVAL Deployment
        Firefox Version: 3.6.23

        I think that the only place we are using a multiple SelectItem is within the FilterEditor.

        We do have third party libraries - however, I've also tested this in standalone project and got the same result.

        It may be worth noting that we do not have this problem if we use SmartGWTPower-2.5_NB_20120102
        Last edited by caleb.mayer; 8 May 2012, 12:11.

        Comment


          #5
          This is now fixed in the 8.2p / 8.3d branches
          Please try the next nightly build and let us know if you continue to have problems with it!

          Thanks
          Isomorphic Software

          Comment


            #6
            Thank you, it works!

            Comment

            Working...
            X