码迷,mamicode.com
首页 > 编程语言 > 详细

jquery 的datatables插件问题(多列排序)

时间:2015-06-30 14:40:03      阅读:1380      评论:0      收藏:0      [点我收藏+]

标签:


//按第二列降序排序,

出现提示: Datables wrning(table id=‘example‘):Cannot reinitialise DataTable. To retrieve the
Datables object for this table,please pass eithser no arguments to the dataTable() function,

解决方法:

1、加 "bDestroy":true,和"bRetrieve": true, 只是能屏蔽提示。 

2、 $(document).ready(function () {
            $(‘#Todolisttable‘).dataTable().fnDestroy();  //必须加fnDestroy() 这个
            $(‘#Todolisttable‘).dataTable({
                "aaSorting": [
                    [1, "desc"]    //按第二列降序排序,
          ] }); });
2、 $(document).ready(function () {
            $(#Todolisttable).dataTable().fnDestroy(); 
            $(#Todolisttable).dataTable({
                "aaSorting": [
                    [1, "desc"] 
          ] }); });

 

 

jquery 的datatables插件问题(多列排序)

标签:

原文地址:http://www.cnblogs.com/aimyfly/p/4610261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!