2016-08-02 80 views
0

我想僅使用數據表插件來排序當前頁面。有沒有辦法做到這一點?使用數據表插件的當前頁面明智排序

的javascript ODE:

$('#announcementListing-data').DataTable({ 
     pageLength: 5, 
     "columnDefs": [ { 
     "targets" : 'no-sort', 
     "orderable": false, 
     "order": [] 
    }],  
     "language": { 
      "lengthMenu": "Display _MENU_ records per page", 
      "zeroRecords": "Nothing found - sorry", 
      "info": "_PAGE_ of _PAGES_", 
      "infoEmpty": "No records available", 
      "infoFiltered": "(filtered from _MAX_ total records)" 
     }  
    }); 
+0

檢查此URL:http://stackoverflow.com/questions/27437983/how-to-sort-only-the-current-page-using-jquery-datatable –

回答

0

Bydefault數據表提供排序的功能。但是,如果您可以對特定表格的特定列進行排序,則可以使用此代碼。以降序

$(document).ready(function() { 
    $('#example').DataTable({ 
     order: [[ 3, 'desc' ], [ 0, 'asc' ]] 
    }); 
}); 

這裏[3, '降序']裝置(0,1,2,3)第四列,[0, '遞增']是指以升序第一列。

相關問題