jquery + dataTables列自动宽度

时间:2015-05-18 14:04:10

标签: jquery jquery-ui jquery-datatables

我的列宽设置有问题。 它没有按列搜索正常工作,但不适用于搜索

$('#headerListTable tfoot th').each(
 function() {
  var title = $('#headerListTable thead th').eq($(this).index()).text();
  $(this).html('<input type="text" placeholder="Search ' + title + '" style=""/>');
});

Not-working auto-width

仅在dataTables中帮助手动设置宽度

   ...
"aoColumns": [
            { "sWidth": "20%" },
            { "sWidth": "30%" }, 
            { "sWidth": "20%" },
            { "sWidth": "5%" },
            { "sWidth": "15%" },
            { "sWidth": "15%" }
        ]
...

enter image description here

问题:是否可以自动设置列宽?

JSFiddle Code Example

0 个答案:

没有答案