2014-09-13 147 views
0

當我調整標題大小時,正文還調整了一些大小,但不正確。例如:帶列調整大小插件的數據表不能正確調整大小

Example

網格初始化如下:

var oTable = $('#grid').dataTable({ 
    dom: 'Rlfrtip', 
    "scrollX": true, 
    "bPaginate": false, 
    "bLengthChange": false, 
    "bFilter": true, 
    "bSort": true, 
    "bInfo": false, 
    "bAutoWidth": false 
    }); 

我使用ColReorderWithResize.js 1.0.7版

任何想法?

+0

看到這個帖子http://stackoverflow.com/questions/8278981/datatables-on-the-fly-resizing – 2014-09-13 09:45:54

+0

不似乎與;你可以注意到建議的參數已經設置爲false。 – Mark 2014-09-13 17:58:47

+0

是否autoWidth:false work? – Irshu 2014-11-24 03:05:49

回答

0

試舉固定的寬度是這樣的:

aoColumns: [ 
    { "sWidth": "50px" }, 
    { "sWidth": "150px" }, 
    { "sWidth": "50px" }, 
    { "sWidth": "50px" }, 
    { "sWidth": "50px" } 
    ]