2010-11-19 16 views

答えて

0

それはあなたがそれを必要とするものに依存し...あなただけの列が非表示になっていたい場合は、後でそれらを明らかにするさて、あなたは(docsから)列を切り替えるには、これを行うと思います

function fnShowHide(iCol) 
{ 
    /* Get the DataTables object again - this is not a recreation, just a get of the object */ 
    var oTable = $('#example').dataTable(); 

    var bVis = oTable.fnSettings().aoColumns[iCol].bVisible; 
    oTable.fnSetColumnVis(iCol, bVis ? false : true); 
} 

プラグインが列を追加するために(私の知る限り承知しているとして)インターフェースを持っていませんが、普通のjQueryのトリックを行うようだ:

$('#example thead tr,#example tfoot tr').append('<th>New title</th>'); 
$('#example tbody tr').append('<td />'); 
関連する問題