Created
November 15, 2014 09:18
-
-
Save kofj/ea1fe3f3d00ee7311a8f to your computer and use it in GitHub Desktop.
DataTable Chinese Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 评审结果列表 | |
* @internal 此方法用于显示评审结果列表 | |
* @since 2014-11-13 16:27:18 | |
* @author FrankKung <[email protected]> | |
*/ | |
$(document).ready(function() { | |
$('#datatables').dataTable( { | |
"bProcessing": true, | |
"bServerSide": true, | |
"bFilter": false, // 搜索 | |
"aaSorting": [[2,'desc'], [3,'desc']], // 初始多列排序 | |
"columnDefs": [ // 排序 | |
{"orderable": false, "targets":1}, | |
//{"orderable": false, "targets":2}, | |
//{"orderable": false, "targets":3}, | |
//{"orderable": false, "targets":4}, | |
{"orderable": false, "targets":5}, | |
{"orderable": false, "targets":6}, | |
], | |
ajax: { | |
url: '{:U("Manager/Result/index")}', | |
type: 'POST' | |
}, | |
"sPaginationType": "full_numbers", | |
"oLanguage" : { | |
"sLengthMenu": "每页显示 _MENU_ 条记录", | |
"sZeroRecords": "抱歉, 没有找到", | |
"sInfo": "从 _START_ 到 _END_ /共 _TOTAL_ 条数据", | |
"sInfoEmpty": "没有数据", | |
"sInfoFiltered": "(从 _MAX_ 条数据中检索)", | |
"sZeroRecords": "没有检索到数据", | |
"sSearch": "名称:", | |
"oPaginate": { | |
"sFirst": "首页", | |
"sPrevious": "前一页", | |
"sNext": "后一页", | |
"sLast": "尾页" | |
} | |
}, | |
} ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment