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

怎样设置easyui中datagrid行高

时间:2018-03-23 11:37:13      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:超出   ber   tco   title   tag   信息   nat   选择   paginati   

$(‘#face_table2‘).datagrid({
            title: ‘信息‘,
            iconCls: ‘icon-save‘,
   url: ‘callroll!page.action‘
   nowrap: true,                      //设置为true,当数据长度超出列宽时将会自动截取。
   striped: true,        //显示条纹
   pageList: [5,15,30], 
   fitColumns: false,
   pageSize: 15,
   loadMsg: ‘正在加载数据.......‘,  //当从远程站点载入数据时,显示的一条快捷信息
   pagination: true,                  //设置true将在数据表格底部显示分页工具栏
   idField: ‘flowId‘,                    //表明该列是一个唯一列。
   rownumbers: true,               //设置为true将显示行数 ,
   singleSelect: true,                //设置为true将只允许选择一行
   columns:[[
           {field:‘userNo‘,title:‘编号‘,width:120,align:‘center‘},
           {field:‘userName‘,title:‘姓名‘,width:120,align:‘center‘}

         ]],
    onLoadSuccess: function(data){   
          var panel = $(this).datagrid(‘getPanel‘);   
          var tr = panel.find(‘div.datagrid-body tr‘);   
          tr.each(function(){   
              var td = $(this).children(‘td[field="userNo"]‘);   
              td.children("div").css({   
                  //"text-align": "right" 
                  "height": "28px" 
              });   
          });   
      }
   })

怎样设置easyui中datagrid行高

标签:超出   ber   tco   title   tag   信息   nat   选择   paginati   

原文地址:https://www.cnblogs.com/liuqiyun/p/8628776.html

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