[ts]
$("#contextMenu").ejMenu({
menuType: ej.MenuType.ContextMenu,
openOnClick: false,
contextMenuTarget: "#mainMenuView .e-text"
});
|
[ts]
$("#contextMenu").ejMenu({
menuType: ej.MenuType.ContextMenu,
openOnClick: false,
contextMenuTarget: "#mainMenuView",
beforeOpen: function (args) {
//check whether the target is TreeView node or not
if (!$(args.target).hasClass("e-text"))
args.cancel = true; // prevent to open the Context Menu other than the TreeView node
}
});
|