0
我想這兩個數據表:結合行重新排序和表單輸入
行重新排序 https://datatables.net/extensions/rowreorder/examples/initialisation/events.html
和
結合表單輸入 https://www.datatables.net/examples/api/form.html
我希望能夠有拖放行排序和可編輯數據。
下面是我無法弄清的問題:每次拖放重排一行時,它都會將數據恢復爲初始狀態,而不是用戶輸入到文本字段中的內容。我希望數據輸入字段保持不變!
任何人都有解決方案嗎?
$(document).ready(function() {
var table = $('#mytable').DataTable({
rowReorder: true,
lengthMenu: [[-1, 25, 100, 200], ["All", 25, 100, 200]],
columnDefs: [
{ orderable: true, className: 'reorder', targets: 0 },
{ orderable: false, targets: '_all' }
],
});
HTML是標準表,tr,td,input type = text type stuff。
編輯:
這是由於其已被固定在庫中的缺陷。