チェックボックスがオンになっているflexigridからセルテキスト値を取得する関数があります。しかし、私は問題を抱えています。マスターチェックボックス(列のタイトルとともに表示されるテキスト値は含まれていません)をクリックすると、マスターチェックボックスが原因でクラップスになります。
これは私が得るエラーです:Uncaught Error: Syntax error, unrecognized expression: #
Flexigridからイベント日付を取得する私の関数は次のとおりです。
function getSelectedCopyDates() {
var arr = new Array();
//for every row that has a checked checkbox
$("tr").has(".noteCheckBox:checked").each(function (i) {
//push the value of column(FName, LName) into the array
arr.push($("#" + this.id + "> td[abbr='EventDate'] > div").text());
}
});
return arr;
}
そして、これが私の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: 'File ID', name: 'FileID', width: 70, sortable: true, align: 'center', process: showDescription, hide: true },
これがどのように見えるかです: