如何在数据表中设置列宽

时间:2014-05-12 08:10:34

标签: php jquery datatables width

我有一张桌子,我想调整表格的列

$("#tableSortable").dataTable({
        "bAutoWidth": false,
        "aoColumns": [
        { sWidth: '1%' },
        { sWidth: '1%' },
        { sWidth: '1%' },
        { sWidth: '1%' } ]
    });
    tableSortable.fnDraw();
});

1 个答案:

答案 0 :(得分:0)

Rory McCrossan在评论中提到了这一点。是的,表的组合单元格应为100%

在你的情况下,有4列,然后是相当直的farword。

"aoColumns": [
        { sWidth: '25%' },
        { sWidth: '25%' },
        { sWidth: '25%' },
        { sWidth: '25%' } ]

如果你想以不同的方式做到这一点,你可以设置bAutoWidth:True。

此致