单击一个空的 jqgrid

发布于 2024-11-06 21:18:22 字数 100 浏览 0 评论 0原文

谁能告诉我如何获取空网格的点击事件。 我有一个空网格,插入后我需要刷新网格,因为我在网格中使用右键单击菜单。 所以一开始不会有数据,需要一个网格的点击事件,

谢谢, 德万

Can anyone please tell how to get the click event of an empty grid.
i have an empty grid, and after inserting i need to refresh the grid for that i use a right click menu in the grid.
So at first there will be no data and need a click event of the grid,

Thanks,
Devan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还给你自由 2024-11-13 21:18:22

在我看来,你应该在填充网格后触发“reloadGrid”。

如果您确实需要对整个网格(而不仅仅是网格体)实现“单击”或“右键单击”事件处理程序,您可以使用 gbox div ,它将由 jqGrid 构造并包含所有 jqGrid 元素(请参阅 此处了解详细信息):

var myGrid = $("#list");
// ...
$('#gbox_'+myGrid[0].id).click(function(e) {
    alert("click!");
}).bind('contextmenu', function(e) {
    alert("right click!");
});

请参阅相应的演示此处

It seems to me that you should trigger 'reloadGrid' after the filling of the grid.

If you do need implement 'click' or 'right click' event handler to the whole grid and not only the grid body you can use gbox div which will be constructed by jqGrid and which includes all jqGrid elements (see here for details):

var myGrid = $("#list");
// ...
$('#gbox_'+myGrid[0].id).click(function(e) {
    alert("click!");
}).bind('contextmenu', function(e) {
    alert("right click!");
});

See the corresponding demo here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文