我在一个页面上有多个jqgrid表。我的一些领域有
edittype: custom;
对于每个自定义编辑类型,我写了两个函数。 “custom_element”函数看起来像
function myelem (value, options) {
return '<a href="path/' + jqgridId + '">Link</a>';
}
如何获取路径参数的jqgridId?我尝试过像
这样的东西$('tr#tr_' + options.id).closest('table').attr('id');
但它不起作用。请帮忙。