我有这个带有函数 multiselect = true 的 Jqgrid。现在,我想知道如何知道复选框是否被选中?我需要知道,因为如果选中该复选框,我会向这些人发送消息。我想我需要 FOR,但我不知道如何使用它
$.getJSON("/Page/pop", function (data) {
var data = data;
$('#table').jqGrid({
datatype: 'local',
data: data,
colNames: ['Code', 'Client', 'Email', 'Copy Email', ''],
colModel: [
{ name: 'rec', index: 'rec' },
{ name: 'nmcli', index: 'nmcli' },
{ name: 'listEm', index: 'listEm' },
{ name: 'listEmCp', index: 'listEmCp' },
{ name: 'cdrec', index: 'cdrec', hidden: true}],
viewrecords: true,
multiselect: true,
imgpath: 'jqGrid-3.4.3/themes/coffee/images',
height: 'auto',
width: 1680
});
});