欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

easyUI中冻结表头

程序员文章站 2022-04-25 16:30:11
...

fit: true

$('#dataanagrid-content-dg').datagrid({
    rownumbers: true,
    singleSelect: false,
    checkbox: true,
    fit: true,
    idField: '传感器',
    columns: [[
        { field: 'ck', title: '213', width: '10%', align: 'center', checkbox: true },
        { field: '传感器', title: '传感器', width: '52%', align: 'center' },
        { field: '时间', title: '时间', width: '32%', align: 'center' },
        { field: '值', title: '值', width: '12%', align: 'center' }
    ]]
});

未加fit:true时:

easyUI中冻结表头

加上fit:true后:

easyUI中冻结表头

相关标签: web框架