2013-02-05 3 views

답변

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 
+0

감사합니다. 하지만 내 퀴즈는 내 condtion에서 데이터 fiter에 사용하고 테이블에 값을 추가 할 수 있습니다. 있을 수있다? – user279

관련 문제