I am trying to make a toolbar in such a way that some of the elements are menu's. The toolbar menu elements show up under the toolbar buttons and are not visible. Any suggestions or should I try a different approach?
Thanks
dojo.require("dojo.parser");
dojo.require("dijit.Toolbar");
dojo.require("dijit.Menu");
var toolbar = new dijit.Toolbar ( {id: "toolbar"}, document.createElement ( "div" ) );
dijit.byId ( "menu" ).domNode.appendChild ( toolbar.domNode );
toolbar.addChild ( new dojo.form.Button ( {id: "idone", label: "one"} );
