(条件から) いくつかのフィルター データを jquery データ テーブルに追加する必要があります。どのように可能ですか?
1 に答える
0
$('#table_items').dataTable({
"aaSorting": [[ 5, "desc" ]],
"bPaginate": false,
"bFilter": false,
"bInfo": false
});
'#table_items' - the id of your table
"aaSorting": [[ 5, "desc" ]] - here 5 is the number of column for default sorting
All columns will be sortable automatically
于 2013-02-05T06:50:50.753 に答える