A large menu with scroll bar is always jumping back to the first entry when trying to scroll down with the mouse wheel or keyboard. Same happens when you are scrolling down by dragging the scroll bar and then trying to point to a menu item. Effectively, it is not possible to select an entry from the initially invisible menu area.
This issue can be found in the latest SmartGWT and SmartClient nightlies with Firefox (tested with 13-15.0.1 under Linux and 14.0.1 under Windows). Chrome works fine.
Test case:
This issue can be found in the latest SmartGWT and SmartClient nightlies with Firefox (tested with 13-15.0.1 under Linux and 14.0.1 under Windows). Chrome works fine.
Test case:
Code:
var data = []; for (var i = 0; i < 100; i++) data[i] = {title: "Item " + i, click: "isc.say('Item " + i + "')"}; isc.Menu.create({ ID: "menu", autoDraw: false, data: data }); isc.MenuButton.create({ ID: "menuButton", title: "File", width: 100, menu: menu });
Comment