码迷,mamicode.com
首页 > 其他好文 > 详细

datatables 一些写法上的技巧

时间:2017-02-24 19:41:56      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:type   tables   target   show   bsp   als   配置   位置   isa   

自定义数据

ajax: {
    "url":‘/api/birds/rds/showClusterBad‘,
     "traditional": true,
     "data":{
     },
     "dataSrc": function (myData) {
    $("#groScreen").removeClass("disabled");
     if (!myData.success || myData.data == null) {
         return [];
       } else {
           var a = [];
      $.each(myData.data,function(i,v){
         a.push(myData.data[i]);
      })
        return a;
       }
    }
},

target写法上

{
     "mRender": function (data, type, row) {
       if (data == null) {
          return "-";
       } else {
      return data;
    }
},
"aTargets": [1,2]

 

 在datatables配置中  设置"processing": false,  在language中在配置也是可以的  不过位置有变化,processing的“”正在加载中“”在表格的左上角   language在表格的他thead的正下方   

datatables 一些写法上的技巧

标签:type   tables   target   show   bsp   als   配置   位置   isa   

原文地址:http://www.cnblogs.com/zjpzjp/p/6439662.html

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