我正在尝试从 flexigrid 获取单元格的文本值。但是我不断收到该错误。
这是我检索特定单元格文本的函数(Flexigrid 没有“attr”,而是有“abbr”)。
function getSelectedCopyDates() {
var arr = new Array();
debugger;
//for every row that has a checked checkbox
$("tr").has(".noteCheckBox:checked").each(function(i) {
if ($(this.id) !== "checkAllNotes") {
//push the value of column(FName, LName) into the array
arr.push($("#" + this.id + "> td[abbr='EventDate'] > div").text());
}
});
return arr;
}
当我单击“checkAllNotes”(主复选框)时,我只会收到该错误。如果我手动选中一个复选框,那么一切正常。
这是我的 flexigrid 布局:
$('#viewNotesGrid').flexigrid({
url: url,
dataType: 'json',
method: 'get',
colModel: [{
display: '<input type="checkbox" class="noteCheckBox" id="checkAllNotes" />',
name: 'checkBox',
width: 20,
sortable: false,
align: 'center',
process: showDescription
}, {
display: 'Date',
name: 'EventDate',
width: 80,
sortable: true,
align: 'center',
process: showDescription
},