Announcement

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

    Bug (8.1): submenu is not shown on mouse over when screenReader=true

    We have just upgraded to SC 8.1 version and discovered this issue.

    When it shows a menu, it automatically selects the first menu item (it's shown selected).
    If the first menu item has a submenu, this submenu is not shown on mouse hover.
    You have to click on the menu item to pop up the submenu or deselect the item first (mouse out) and then mouse over again.

    It was quite hard to find what causes the behavior, but eventually I found that it's because of "isc.screenReader = true" flag.

    Here is a sample (should be run standalone, not in feature explorer):
    Code:
    isc.screenReader = true;
    isc.MenuButton.create({
        ID:"menuButton",
        left:50,
        top:75,
        title:"Menu Level 1",
        menu: isc.Menu.create({
            ID:"menuLevel2",
            data:[
                {title:"Menu Level 2",
                 submenu:isc.Menu.create(
                     {ID:"menuLevel3",
                      data:[
                          {title:"Menu Level 3",
                           submenu:isc.Menu.create(
                               {ID:"menuLevel4_1",
                                data:[
                                     {title:"Menu Level 4",
                                      ID:"menuLevel4_1_1"}
                                ]}),
                           ID:"manuLevel3_1"},
                           {title:"Menu Level 3 (2)",
                            submenu:isc.Menu.create(
                               {ID:"menuLevel4_2",
                                data:[
                                    {title:"Menu Level 4",
                                     ID:"menuLevel4_2_1"}
                                ]}),
                            ID:"MenuLevel3_2"}
                      ]}),
                ID:"menuLevel2_1"}
            ]})
    });
    (The same sample is working fine in 8.0.)

    Version SC_SNAPSHOT-2011-06-17/PowerEdition Development Only (2011-06-17)

    #2
    I hope you are looking into it, not just ignoring me... :)

    Comment


      #3
      Actually this has already been resolved - sorry we didn't respond to the thread sooner.
      The latest nightly (and the upcoming official release) should not have this problem

      Thanks
      Isomorphic Software

      Comment


        #4
        Great, thank you.

        Comment


          #5
          Could we possibly get a patch for this issue with 06-17 build? Unfortunately, we are at a point where we cannot afford to upgrade the library again.

          Comment


            #6
            Sorry, not really, especially given that it only affects sighted users but only happens in screenReader mode.

            Comment

            Working...
            X