I'm working on porting a WinForm app to the browser and would like to retain the ability to have a set of drop down menus along the top (within the Toolbar) of jqGrid.
I'm able to create a custom toolbar for the top of the grid w/o cloning the bottom and thus have action buttons. I'm also able to clone the existing navigator.
What I'm missing is how to have either of these two options incorporate a menu system such as jQuery UI Menu. The below code will add the menu to the toolbar but the menu then becomes hidden behind the grid. I've tried adjusting the z-index and position but neither appeared to resolve it.
toolbar: [true,'top'];
...
$("#toolbarId").append('<ul id="myMenu"><li><a href="#">File</a><ul><li>'+
'<a href="#">New</a></li><li><a href="#">Delete</a></li></ul></li></ul>');
$("#myMenu").menu();
Any help is appreciated. Thx.