目前我的代码中没有ajax源代码。我正在使用Jquery Datatables的简单初始化。以下是代码
$('#MyRequestList').DataTable({
responsive: true,
"aLengthMenu": [
[10, 25, 50, 100, -1],
[10, 25, 50, 100, "All"]
],
"sPaginationType": "full_numbers"
});
我想要默认排序,应该是客户端排序。 请帮忙。
答案 0 :(得分:-1)
试试这个:
$(document).ready(function() {
$('#MyRequestList').DataTable( {
"order": [[ COLUMN_NUMBER, "desc"/"asc" ]]
} );
});