We're building a system using:
SNAPSHOT_v9.1d_2013-11-15/Enterprise Deployment (2013-11-15)
& I'm trying to change orientation of an existing Menu from vertical to horizontal, using an implementation similar to your example: http://www.smartclient.com/#fullMenu
According to: http://smartclient.com/docs/9.0/a/b/c/go.html#class..Menu, setting 'vertical' to false should (but doesn't) render horizontal menus.
Could you please advise how to make your example-code render as a horizontal menu, short of using Menubar, Toolstrip (or some other class) instead?
SNAPSHOT_v9.1d_2013-11-15/Enterprise Deployment (2013-11-15)
& I'm trying to change orientation of an existing Menu from vertical to horizontal, using an implementation similar to your example: http://www.smartclient.com/#fullMenu
Code:
isc.Menu.create({
ID: "menu",
autoDraw: false,
showShadow: true,
shadowDepth: 10,
vertical: false,
....
....Could you please advise how to make your example-code render as a horizontal menu, short of using Menubar, Toolstrip (or some other class) instead?