我的列宽设置有问题。 它没有按列搜索正常工作,但不适用于搜索
$('#headerListTable tfoot th').each(
function() {
var title = $('#headerListTable thead th').eq($(this).index()).text();
$(this).html('<input type="text" placeholder="Search ' + title + '" style=""/>');
});
仅在dataTables中帮助手动设置宽度
...
"aoColumns": [
{ "sWidth": "20%" },
{ "sWidth": "30%" },
{ "sWidth": "20%" },
{ "sWidth": "5%" },
{ "sWidth": "15%" },
{ "sWidth": "15%" }
]
...
问题:是否可以自动设置列宽?