gpt4 book ai didi

jquery - 行重新排序在 Datatable jquery 插件中不起作用

转载 作者:行者123 更新时间:2023-12-01 01:13:30 25 4
gpt4 key购买 nike

我使用数据表插件版本 - 1.10.15

我想让我的表行可拖动以更改排序顺序,为此我使用数据表“行重新排序”功能,但它不起作用

给我一​​个错误:Uncaught TypeError: table.rowReordering is not a function

This is my work但不起作用

我正在尝试包含所有相关的外部来源

我的脚本是

$(document).ready(function() {
var table = $('#example').DataTable({
"iDisplayLength": 50,
'createdRow': function(row, data, dataIndex) {
$(row).attr('id', 'row-' + dataIndex);
}
});

table.rowReordering();
});

请通过查看我的示例帮助我找出问题所在

最佳答案

我使用DataTables 1.10.9、RowReorder 1.0.0 解决了我的问题

这里正在处理数据表子行

简单的解决方案是:

var table = $('#example').DataTable({
rowReorder: true,
"iDisplayLength": 50,
});

<强> DEMO

关于jquery - 行重新排序在 Datatable jquery 插件中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44381789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com