Hi...
I have an issue with Menu widget. I'm not sure if it's a bug or if I'm trying to use this widget in a wrong way...
Version: v10.0p_2014-09-10/LGPL Deployment (built 2014-09-10)
Browser: IE11, CHROME 40.0.2214.115, FF 35.0.1
I'm using as sample the Menu from Feature Explorer with a litle modification:
http://www.smartclient.com/docs/release/a/system/reference/SmartClient_Explorer.html#fullMenu
I would like to dock the Menu on fixed on a Layout (for example VLayout) but without using the MenuButton... Something similar to this:
What I observe in the original sample is that the rollover action on the Main menu works right, even when submenu is open by the rollover action, you can rollover again on the main Menu items.
But on my sample, with the Menu docked directly on a Layout without a MenuButton, when a submenu is opened by the rollover action, no more rollover actions are performed on the Main menu until a "click" action is fired by the user...
This should work right or Menu widget should always be used with a MenuButton?
Thanks and best regards...
I have an issue with Menu widget. I'm not sure if it's a bug or if I'm trying to use this widget in a wrong way...
Version: v10.0p_2014-09-10/LGPL Deployment (built 2014-09-10)
Browser: IE11, CHROME 40.0.2214.115, FF 35.0.1
I'm using as sample the Menu from Feature Explorer with a litle modification:
http://www.smartclient.com/docs/release/a/system/reference/SmartClient_Explorer.html#fullMenu
I would like to dock the Menu on fixed on a Layout (for example VLayout) but without using the MenuButton... Something similar to this:
Code:
isc.Menu.create({ ID: "menu", autoDraw: false, showShadow: true, shadowDepth: 10, data: [ {title: "New", keyTitle: "Ctrl+N", icon: "icons/16/document_plain_new.png"}, {title: "Open", keyTitle: "Ctrl+O", icon: "icons/16/folder_out.png"}, {isSeparator: true}, {title: "Save", keyTitle: "Ctrl+S", icon: "icons/16/disk_blue.png"}, {title: "Save As", icon: "icons/16/save_as.png"}, {isSeparator: true}, {title: "Recent Documents", icon: "icons/16/folder_document.png", submenu: [ {title: "data.xml", checked: true}, {title: "Component Guide.doc"}, {title: "SmartClient.doc", checked: true}, {title: "AJAX.doc"} ]}, {isSeparator: true}, {title: "Export as...", icon: "icons/16/export1.png", submenu: [ {title: "XML"}, {title: "CSV"}, {title: "Plain text"} ]}, {isSeparator: true}, {title: "Print", enabled: false, keyTitle: "Ctrl+P", icon: "icons/16/printer3.png"} ] }); isc.VLayout.create({ width: 200, members: [menu] });
But on my sample, with the Menu docked directly on a Layout without a MenuButton, when a submenu is opened by the rollover action, no more rollover actions are performed on the Main menu until a "click" action is fired by the user...
This should work right or Menu widget should always be used with a MenuButton?
Thanks and best regards...