私はjTableを持っていて、すべての行を選択する必要があるので、後でAJAXに情報を提供し、処理のためにコントローラーにデータを送信できます。
私の問題は、それを機能させることができないことです。これまでのJSコードは次のとおりです。
$('#saveButton').click(function(){
$('#UserTable').jtable("selectRows"); // I think here is the problem
var $selectedRows = $('#smsUserTable').jtable('selectedRows');
$selectedRows.each(function () {
var record = $(this).data('record');
var userId = record.userId;
console.log(userId);
});
});
Uncaught TypeError: Cannot call method 'addClass' of undefined error が常に発生します。
多分私は selectRows メソッドを間違って使用しています。前もって感謝します。