[jQuery] jQuery Right click menu

[jQuery] jQuery Right click menu


Hello !
I'm jQuery newbie and now trying to build an application
with jQuery Grid interface. My page is that ---
http://djalmabina.orgfree.com/jQueryGrid/jQuery_Grid.html
The left side frame is a XML menu , tree2.xml what loads
another html files within my webserver.
JS source code is that :
jQuery("#west-grid").jqGrid({
url: "tree2.xml",
datatype: "xml",
height: "auto",
pager: false,
loadui: "disable",
colNames: ["id","Projects","url"],
colModel: [
{name: "id",width:1,hidden:true, key:true},
{name: "menu", width:150, resizable: false,
sortable:false},
{name: "url",width:1,hidden:true}
],
treeGrid: true,
        caption: "Left Section",
ExpandColumn: "menu",
autowidth: true,
width: 200,
rowNum: 200,
ExpandColClick: true,
treeIcons: {leaf:'ui-icon-document-b'},
onSelectRow: function(rowid) {
var treedata = $("#west-grid").getRowData(rowid);
if(treedata.isLeaf=="true") {
//treedata.url
var st = "#t"+treedata.id;
                if($(st).html() != null ) {
                    maintab.tabs('select',st);
                } else {
                    maintab.tabs('add',st, treedata.menu);
                    $(st,"#tabs").load(treedata.url);
                }
}
}
});
I would like to add right-click menus for each one item
of XML menu.
What is the jQuery Plugin more suitable for this ?
thanks.