listeners:{ 'itemcontextmenu':function(view,record,item,index,e,eOpts){ //禁用瀏覽器的右鍵相應(yīng)事件 e.preventDefault(); e.stopEvent(); var menu = new Ext.menu.Menu({ //控制右鍵菜單位置 float:true, items:[{ text:"修改", iconCls:'leaf', handler:function(){ //當(dāng)點(diǎn)擊時(shí)隱藏右鍵菜單 this.up("menu").hide(); alert(record.raw.name); } },{ text:"添加", iconCls:'leaf', handler:function(){ this.up("menu").hide(); alert("添加"); } },{ text:"刪除", iconCls:'leaf', handler:function(){ this.up("menu").hide(); alert("刪除"); } } ] }).showAt(e.getXY());//讓右鍵菜單跟隨鼠標(biāo)位置 } }
|