通常我们调用 onSelectRow 函数,如:
$("#imports_grid").jqGrid({
// jqGrid settings
url: url,
datatype: "json",
colNames: cnames,
colModel: cmodel,
onSelectRow: function() {
// Code
},
});
我的 PHP 脚本使用 json_encode() 输出 jqGrid 设置,所以它看起来像
$script = '$("#imports_grid").jqGrid(' . json_encode($js_settings) . ');';
// echo $script;
在这种情况下,onSelectRow 的功能不起作用。
是否有另一种方法可以在 onSelectRow 中触发函数?