元の tablesorter プラグインにはupdateCell
メソッドの使用に問題があるため、このメソッドは入力値を更新するときに機能しません。しかし、この問題のないテーブルソーターのフォークを試すことができます。
これは、以下のすべてのコードをまとめたデモです。
基本的に、すべてのテーブル セルに適用されるものを使用する代わりにtextExtraction
、パーサーを追加するだけです。
$.tablesorter.addParser({
id: "inputs",
is: function () {
return false;
},
format: function (s, table, cell) {
return $(cell).find('input').val() || s;
},
type: "text"
});
次に、それを適用する列をtablesorterに伝えます(ゼロベースのインデックス):
$('table').tablesorter({
headers: {
0: { sorter: "inputs" } // zero-based index (first column = column 0)
}
});
次に、入力への変更 (読み取り専用にしない限り) が tablesorter によって認識され、サーバーに送信されることを確認します。
var resort = true, // resort table after update
// update all input types within the tablesorter cache when the change event fires.
// This method only works with jQuery 1.7+
// you can change it to use delegate (v1.4.3+) or live (v1.3+) as desired
// if this code interferes somehow, target the specific table $('#mytable'),
// instead of $('table')
$(window).load(function () {
// this flag prevents the updateCell event from being spammed
// it happens when you modify input text and hit enter
var alreadyUpdating = false;
$('table').find('tbody').on('change', 'input', function (e) {
if (!alreadyUpdating) {
var $tar = $(e.target),
$table = $tar.closest('table');
alreadyUpdating = true;
$table.trigger('updateCell', [ $tar.closest('td'), resort ]);
// *** update your server here ***
setTimeout(function () {
alreadyUpdating = false;
}, 10);
}
});
});