需要把heigh高度写死
table.render({
elem: '#tbl_Birthday'
, url: 'ToDoManagement.aspx'
, method: 'post'
, where: { //设定异步数据接口的额外参数,任意设
action: 'Ajax_Birthday',
field: "ResumeID",
order: "desc"
}
, text: {
none: '暂无相关数据' //默认:无数据。
}
, cols: [[
{ field: 'JobNumber', title: '员工工号', sort: true, width: '30%' }
, { field: 'JobSeekerName', title: '员工姓名', sort: true, width: '30%' }
, { field: 'BirthDay', title: '距离生日天', sort: true, fixed: 'right', width: '40%' }
]]
, cellMinWidth: 80
, height: '500px'//('full-150'这样写横向滚动条会出现不显示,纵向滚动条显示不全)
, even: true //隔行背景
, size: 'sm' //单元格大小
});