gpt4 book ai didi

jquery - 如何为我的 jqGrid 设置 contextMenu?

转载 作者:行者123 更新时间:2023-12-01 01:22:28 27 4
gpt4 key购买 nike

我的网站上有一个供内部使用的 jqGrid,其中列出了我们的所有用户。在每个用户/行上,我希望能够应用各种选项(取决于该行中的数据)。与其向寻呼机添加导航按钮,不如在右键单击一行时出现一个上下文菜单更有意义。

我们目前有this jQuery contextMenu plugin在我们的网站上导入,因此最好以某种方式将其集成到我的 jqGrid 中。

我的 jqGrid 缩小到基本尺寸看起来像这样:

$("#users").jqGrid({
datatype: 'json',
url: 'myMethodURL',
gridview: true,
colModel: [
{name: 'id', label: 'User ID', hidden:true},
{name: 'lastname', label: 'Last Name'},
{name: 'firstname', label: 'First Name'},
{name: 'status', label: 'Status', stype: 'select', searchoptions: {value: ':All;ACTIVE:Active;INACTIVATED:Inactive;PENDING APPROVAL:Pending Approval;'}},
... more fields ...
],
height:'auto',
autowidth:true,
caption:'Users',
rowNum:20,
rowList:[10,20,50],
sortorder:'asc',
sortname: 'lastname',
ignoreCase: true, // case-insensitive filtering
pager: '#pager',
jsonReader: {
root: "ROWS", //our data
page: "PAGE", //current page
total: "TOTAL", //total pages
records:"RECORDS", //total records
cell: "", //not used
id: "0" //will default first column as ID
},
postData: postData
});
$("#users").jqGrid("filterToolbar", {searchOnEnter: true});

上下文菜单中我需要的一些选项:

  1. 激活或停用(取决于用户当前是否处于事件状态 - 基本上需要切换)
  2. 处理待处理用户(仅当用户状态为“待处理”时才显示)
  3. 编辑用户信息
  4. 发送重置密码链接

如何设置带有变量选项的上下文菜单(取决于特定行的值),并定义单击选项时会发生什么?

最佳答案

一般来说 the jQuery contextMenu plugin 的用法在我看来,使用 jqGrid 非常简单。您只需将菜单绑定(bind)到网格体即可。只需要知道 rowid 的值是 id <tr> 的属性具有真实数据的 element 和 tr 元素具有类 .jqgrow .

因此代码可能如下所示

$("#users").jqGrid({
datatype: 'json',
...
}).contextMenu({
selector: ".jqgrow",
build: function ($trigger, e) {
// this callback is executed every time the menu is to be shown
// its results are destroyed every time the menu is hidden
// e is the original contextmenu event

var $tr = $(e.target).closest("tr.jqgrow"),
rowid = $tr.attr("id"),
item = $grid.jqGrid("getRowData", rowid);

// item contains now the data of the row and we can
// build the context menu dynamically
if (item.status === "ACTIVE") {
return {
callback: function (key, options) {
var m = "clicked: " + key + " on rowid=" + rowid +
" (" + item.firstname + " " + item.lastname + ")";
alert(m);
},
items: {
edit: {name: "Edit", icon: "edit"},
cut: {name: "Cut", icon: "cut"},
copy: {name: "Copy", icon: "copy"},
paste: {name: "Paste", icon: "paste"},
delete: {name: "Delete", icon: "delete"},
sep1: "---------",
quit: {name: "Quit", icon: function($element, key, item) {
return 'context-menu-icon context-menu-icon-quit';
}}
}
};
} else {
return {
callback: function (key, options) {
var m = "clicked: " + key + " on rowid=" + rowid +
" (" + item.firstname + " " + item.lastname + ")";
alert(m);
},
items: {
delete: {name: "Delete", icon: "delete"},
sep1: "---------",
quit: {name: "Quit", icon: function($element, key, item) {
return 'context-menu-icon context-menu-icon-quit';
}}
}
};
}
}
});

查看演示 https://jsfiddle.net/OlegKi/37rb593h/ 。您可以修改build的代码回调您的任何要求。

关于jquery - 如何为我的 jqGrid 设置 contextMenu?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34607798/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com