按降序排序数据表

时间:2016-12-21 07:30:22

标签: jquery datatables

我有一个数据表,包括Brand,Section,Color,Len。,Section Type,desc。,Wt,Qty,Rate,Total,Storage,Action

当我将数据保存到表中时,我希望在顶部获取最新数据,然后是数据表中的旧数据。现在我没有得到数据表中的已排序数据,即使我从模型中正确排序它们控制器。

我的脚本如下所示:

class userform(ModelForm):
    class Meta:
       model = User
       fields = ('username','email', 'password','is_staff','is_active','is_superuser')
    widgets={
    'password':TextInput(attrs={'type':'password'})
    }

如何在数据表中按降序显示数据而不指定列?

1 个答案:

答案 0 :(得分:0)

$(document).ready(function(){
$('#bar_list').dataTable( {
    "order": [[ INDEX_NO_COLUMN, SORT_TYPE ]],
    "bProcessing": true,
    "bServerSide": true,
    "sAjaxSource": App.settings.basePath + "inventory/requisition/barlist"
    +"/type/<?php echo $this->type; ?>/id/<?php echo $this->id; ?>"
    +"/barFilterSection/<?php echo $this->filterSection; ?>"
    +"/barFilterColor/<?php echo $this->filterColor; ?>"
    +"/barFilterLength/<?php echo $this->filterLength; ?>"

});

Refer Link