Open Diluka opened 9 years ago
//高度设定 height: "auto",
//列 var columns = [{ title: '序号', dataIndex: 'sort_no', width: '5%' }, { title: '年度', dataIndex: 'n_year', width: '15%' }, { title: '考核结果', dataIndex: 'n_result_text', width: '70%' }, { title: '操作', width: '10%', renderer: function (value, obj) { return '查看详情'; } } ];
//p.s. 在IE下,列之和不为100%会乱,Chrome没有问题
///////////////////////临时修正方案///////////////////////// //填满页面,滚动条出现在Grid内部的高度设定 $(".bui-grid-body").height($(document).height() - 120); $(".bui-grid-bbar").height(35);
//表头与内容无法对齐的修正 $(".bui-grid-hd-empty.bui-grid-hd").width($(".bui-grid-header").width() - $(".bui-grid-body .bui-grid-table").width()); $(".bui-grid-cell.bui-grid-cell-empty").width(0);
///////////////////////////////截图/////////// //修正前
//修正后
//高度设定 height: "auto",
//列 var columns = [{ title: '序号', dataIndex: 'sort_no', width: '5%' }, { title: '年度', dataIndex: 'n_year', width: '15%' }, { title: '考核结果', dataIndex: 'n_result_text', width: '70%' }, { title: '操作', width: '10%', renderer: function (value, obj) { return '查看详情'; } } ];
//p.s. 在IE下,列之和不为100%会乱,Chrome没有问题
///////////////////////临时修正方案///////////////////////// //填满页面,滚动条出现在Grid内部的高度设定 $(".bui-grid-body").height($(document).height() - 120); $(".bui-grid-bbar").height(35);
//表头与内容无法对齐的修正 $(".bui-grid-hd-empty.bui-grid-hd").width($(".bui-grid-header").width() - $(".bui-grid-body .bui-grid-table").width()); $(".bui-grid-cell.bui-grid-cell-empty").width(0);
///////////////////////////////截图/////////// //修正前
//修正后