我有一个与 JQuery 数据表绑定的表。
<table id="grid1">
<thead>
<tr>
<th>Name</th>
<th>View</th>
<th>Modify</th>
</tr>
</thead>
</table>
下面是绑定表格/网格的javascript代码-
function grid1_LoadData() {
grid1.fnDestroy();
grid1.dataTable({
"sScrollY": "200px",
"bStateSave": true,
'bDeferRender': true,
'sAjaxSource': '/controller/GetData,
'aoColumns': [
{ 'mDataProp': 'Name' },
{ 'mDataProp': 'View', "sWidth": "55%", sType: 'bool', bSearchable: false, bSortable: false, mData: 'View',
"mRender": function (data, type, full) {
return "<input class=\"enabledbool\" name=\"CanView" + full.ID + "\" type=\"checkbox\" " + (data ? " checked=\"true\"" : "") + "/>";
}
},
{ 'mDataProp': 'Modify', "sWidth": "65%", sType: 'bool', bSearchable: false, bSortable: false, mData: 'Modify', "mRender": function (data, type, full) {
// console.log(data);
return "<input class=\"enabledbool\" name=\"CanModify" + full.ID + "\" type=\"checkbox\" " + (data ? " checked=\"true\"" : "") + "/>";
}
},
]
});
}
在保存网格/表格数据之前,我至少要检查View
或Modify
选中复选框。我需要编写一个 javascript 验证函数。
这是我尝试过的-
function Validate() {
$(grid1.fnGetData()).each(function () {
if ($(.checkbox).is(':checked')) {
return true;
}
else {
return false;
}
});
}
等待宝贵的建议。
更新 我最终使用下面的 javascript 函数来检查验证 -
function Validate() {
var allOk = true;
$(grid1).find("tbody tr").each(function (){
var row = $(this);
if (!row.Modify && !row.View) {
allOk = false;
}
});
return allOk; // Make `Validate` return true only if all rows validate.
}
我试图做的是 if Modify
and View
are not checks then return false
。当我用$(gridProfiles.fnGetData()).each(function ()
而不是检查时$(grid1).find("tbody tr").each(function ()
,它很好。但是网格行是动态添加的,使用时不会列出最后添加的行$(gridProfiles.fnGetData()).each(function ()
。有什么解决办法吗?