我有一张桌子,我想调整表格的列
$("#tableSortable").dataTable({
"bAutoWidth": false,
"aoColumns": [
{ sWidth: '1%' },
{ sWidth: '1%' },
{ sWidth: '1%' },
{ sWidth: '1%' } ]
});
tableSortable.fnDraw();
});
答案 0 :(得分:0)
Rory McCrossan在评论中提到了这一点。是的,表的组合单元格应为100%
在你的情况下,有4列,然后是相当直的farword。
"aoColumns": [
{ sWidth: '25%' },
{ sWidth: '25%' },
{ sWidth: '25%' },
{ sWidth: '25%' } ]
如果你想以不同的方式做到这一点,你可以设置bAutoWidth:True。
此致