我有一个 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 方法错误。先感谢您。