SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
Google Chrome Version 43.0.2357.125 unknown (64-bit) (any browser)
When looking at the documentation for isc.Menu's showIcons: http://www.smartclient.com/docs/9.1/...Menu.showIcons, it states that when unset, the icon column will appear if one of the items have an icon, etc. checked. In my case below, I do not set showIcons and have no icons specified in the menu items. The expected result should hide the icon column on the left of the menu. But this does not happen. Am I doing this wrong or missing a configuration property?
Google Chrome Version 43.0.2357.125 unknown (64-bit) (any browser)
When looking at the documentation for isc.Menu's showIcons: http://www.smartclient.com/docs/9.1/...Menu.showIcons, it states that when unset, the icon column will appear if one of the items have an icon, etc. checked. In my case below, I do not set showIcons and have no icons specified in the menu items. The expected result should hide the icon column on the left of the menu. But this does not happen. Am I doing this wrong or missing a configuration property?
Code:
isc.Menu.create({ ID: "menu", autoDraw: false, showShadow: true, shadowDepth: 10, data: [ {title: "New"}, {title: "Open"} ] }); var menuButton = isc.MenuButton.create({ ID: "menuButton", autoDraw: false, title: "File", width: 100, menu: menu }); isc.HStack.create({ width: "100%", members: [menuButton] });
Comment