我使用Twitter Bootstrap和Jquery DataTable来显示记录。我需要像这个链接那样的MVC示例。
http://datatables.net/examples/data_sources/server_side.html
请帮帮我。
答案 0 :(得分:0)
以下是您的示例代码。
您的观看代码
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/Employee/List/"
} );
} );
在员工控制器中返回JSON formatted employee list
public ActionResult List()
{
List<Employee> empList=//load from repository;
return Json(empList);
}