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):
(The same sample is working fine in 8.0.)
Version SC_SNAPSHOT-2011-06-17/PowerEdition Development Only (2011-06-17)
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"} ]}) });
Version SC_SNAPSHOT-2011-06-17/PowerEdition Development Only (2011-06-17)
Comment