我在Rails网站上使用数据表并打算使用它的'行重新排序插件。数据表站点上的文档说实现很简单 - 我需要做的就是;
$(document).ready(function(){
$('#example').dataTable()
.rowReordering();
});
但对于我的生活,我无法弄清楚如何使用CoffeeScript完成此任务,或者甚至是必要的。我当前的ds.js.coffee文件看起来像这样;
jQuery ->
$('#thetable').dataTable
bDestroy: true,
sPaginationType: "full_numbers",
bAutoWidth: false,
aLengthMenu: [[25,50,100,-1],[25,50,100,"All"]],
iDisplayLength: 50,
aoColumns: [{ "bSortable": false }, null,null,null,null,null,null,null,null],
aaSorting: [[ 1, 'asc' ]],
bStateSave: true;
$(document).ready ->
$('#thetable').dataTable
.rowReordering();
但是在管理之后,桌子上没有任何拖拽。
答案 0 :(得分:1)
这不是函数调用:
$('#thetable').dataTable # <----------------
.rowReordering();
当您调用不带参数的函数(以及其他各种地方)时,函数调用括号不是可选的,您需要说:
$('#thetable').dataTable().rowReordering()
或
$('#thetable').dataTable()
.rowReordering();