0

チェックボックスがオンになっている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 },

これがどのように見えるかです: ここに画像の説明を入力してください

4

1 に答える 1

1

$("tr:has(:not('th'))")セレクターを使用して、マスターチェックボックス行なしで tr を選択します

      $("tr:has(:not('th'))").has(".noteCheckBox:checked").each(function (i) {
          if ($("tr").has(".checkAllNotes:checked")){
                    arr.push($("#" + this.id + "> td[abbr='EventDate'] > div").text());
                }
            });
于 2012-10-09T17:24:52.130 に答える