クリックされた行の1列目と4列目を返す関数をjquerydatatableに実装しようとしています
私はこの例に従っています。これにより、クリックした行を操作できます http://datatables.net/examples/api/select_single_row.html
このハンドラーを変更してセル値の読み取り手順を実行し、独自のロジックで値を使用できると考えています
/* Add a click handler to the rows - this could be used as a callback */
$("#example tbody").click(function(event) {
$(oTable.fnSettings().aoData).each(function (){
$(this.nTr).removeClass('row_selected');
});
$(event.target.parentNode).addClass('row_selected');
});
また、dataTableフォーラムhttp://datatables.net/forums/comments.php?DiscussionID=1384&page=1#Item_0からこの小さなコードセグメントを入手しました。
$('#example tbody tr').click( function () {
// Alert the contents of an element in a SPAN in the first TD
alert( $('td:eq(0) span', this).html() );
} );
クリックしたフィールドの1列目と4列目を取得できるようにポインタを教えてもらえますか?
次の部分 私は上記を解決しました、ありがとうニック
しかし、私は問題の次の部分を持っています。私が使用するテーブルを初期化するとき
/* Init the table */
oTable = $('#filetable').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/crvWeb/jsonFileList.do",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
私のサーブレットはdirリクエストパラメータを受け取り、リストをjsonレスポンスとしてデータテーブルに返します。
/crvWeb/jsonFileList.do
テーブルを更新できるように、POSTリクエストでserlvet応答を追加して取得するにはどうすればよいですか?