怎么获取jqgrid的单元格点击事件

怎么获取jqgrid的单元格点击事件,第1张

onSelectRow: function (rowid, status) {

function()

},

onSelectAll: function (aRowids, status) {

function()

},

试试这两个方法,第一个是选择单行,第二个是选择所有的,用过的人应该了解,加在jqGrid的属性里面使用,

rowid是选择的当前行的Id,

aRowids是所有行的id,

status是选中行的状态,是选中还是没选择,

希望对你有用。

jQuery("#grid_id").navButtonAdd('#pager',{ caption:"Excel", buttonicon:"ui-icon-excel", onClickButton: function(){ alert("导出excel")}, position:"last" })

$('单元格').click(function(){

    var _thas = $(this)

    var isID = _thas.attr("id")

    alert(isID)

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11646339.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存