HTML

  1. <table class="table table-striped table-bordered table-hover" id="table_report">
  2. <thead>
  3. <tr role="row">
  4. <th class="table-checkbox">
  5. 选择
  6. </th>
  7. <th>图片</th>
  8. <th>商品名称</th>
  9. <th>商品编码</th>
  10. <th>商品类型</th>
  11. <th>价格</th>
  12. <th>会员价格</th>
  13. </tr>
  14. </thead>
  15. <tbody></tbody>
  16. <tfoot>
  17. <tr role="row">
  18. <th class="table-checkbox">
  19. <input type="checkbox" class="group-checkable" data-set="#table_report .checkboxes" />
  20. </th>
  21. <th>图片</th>
  22. <th>商品名称</th>
  23. <th>商品编码</th>
  24. <th>商品类型</th>
  25. <th>价格</th>
  26. <th>会员价格</th>
  27. </tr>
  28. </tfoot>
  29. </table>

javascript
  1. <script type="text/javascript">
  2. $(function () {
  3. var table = $('#table_report');
  4. var oTable = table.dataTable({
  5. "processing": true,
  6. "serverSide": true,
  7. //"stateSave": true, // save datatable state(pagination, sort, etc) in cookie.
  8. "pagingType": "bootstrap_full_number",
  9. "language": {
  10. "aria": {
  11. "sortAscending": ": 以升序排列此列",
  12. "sortDescending": ": 以降序排列此列"
  13. },
  14. "loadingRecords": "数据载入中...",
  15. "emptyTable": "表中数据为空",
  16. "info": "显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项",
  17. "infoEmpty": "无数据",
  18. "infoFiltered": "(由 _MAX_ 项过滤得到)",
  19. "infoPostFix": "",
  20. "infoThousands": ",",
  21. "lengthMenu": "显示 _MENU_ 项结果",
  22. "search": "搜索:",
  23. "zeroRecords": "没有匹配结果",
  24. "paging": {
  25. "first": "首页",
  26. "previous": "上页",
  27. "next": "下页",
  28. "last": "末页"
  29. },
  30. "paginate": {
  31. "previous": "上一页",
  32. "next": "下一页",
  33. "last": "尾页",
  34. "first": "首页"
  35. }
  36. },
  37. "ajax": {
  38. url: "/DiscountInfo/DiscountGoodList/" + $("#GoodId").val(),
  39. contentType: "application/json",
  40. type: "POST",
  41. data: function (d) {
  42. var x = JSON.stringify(d);
  43. //console.log(x);
  44. return x;
  45. },
  46. },
  47. "columns": [
  48. {
  49. "data": "Id", "render": function (data, type, full, meta) {
  50. return '<input type="checkbox" class="checkboxes" value="' + data + '"/>';
  51. }
  52. },
  53. { "data": "ImgPath", "name": "图片", "orderable": false ,"render": function (data, type, full, meta) {
  54. return '<img src="' + data + '" height="48" width="48" onerror="errorProImg(this)"></img>';
  55. }},
  56. { "data": "ProName", "name": "商品名称", "orderable": true },
  57. { "data": "ProNumber", "name": "商品编码", "orderable": true },
  58. { "data": "CategoryTypeName", "name": "商品类型", "orderable": true },
  59. { "data": "OrdinaryPrice", "name": "价格", "orderable": true },
  60. { "data": "VipPrice", "name": "会员价格", "orderable": true }],
  61. "rowCallback": function (row, data) {
  62. $(row).find("input").uniform();
  63. if (data.Selected) {
  64. $(row).addClass('active').find("input").attr("checked", true);
  65. } else { }
  66. $.uniform.update();
  67. },
  68. "lengthMenu": [
  69. [20, 50, 100],
  70. [20, 50, 100] // change per page values here
  71. ],
  72. // set the initial value
  73. "pageLength": 20,
  74. //"columnDefs": [{ // set default column settings
  75. // 'targets': [0],
  76. // "searchable": false,
  77. // 'orderable': false
  78. //}],
  79. "order": [
  80. [0, "desc"]// set first column as a default sort by asc
  81. ]
  82. });
  83. //单项操作
  84. table.on('change', 'tbody tr .checkboxes', function () {
  85. var checked = $(this).is(":checked");
  86. if (checked) {
  87. $(this).parents('tr').addClass("active");
  88. $.post("/DiscountInfo/UpdateDiscountGoodList", { GoodId: $(this).val(), DiscountId: $("#GoodId").val(), "Selected": true }, function () { });
  89. } else {
  90. $(this).parents('tr').removeClass("active");
  91. $.post("/DiscountInfo/UpdateDiscountGoodList", { GoodId: $(this).val(), DiscountId: $("#GoodId").val(), "Selected": false }, function () { });
  92. }
  93. });
  94. //多项操作
  95. table.find('.group-checkable').on("change", function () {
  96. var set = $(this).attr("data-set");
  97. var checked = $(this).is(":checked");
  98. var list = [];
  99. $(set).each(function () {
  100. if (checked) {
  101. $(this).attr("checked", true);
  102. $(this).parents('tr').addClass("active");
  103. list.push({ GoodId: $(this).val(), DiscountId: $("#GoodId").val(), "Selected": true });
  104. } else {
  105. $(this).attr("checked", false);
  106. $(this).parents('tr').removeClass("active");
  107. list.push({ GoodId: $(this).val(), DiscountId: $("#GoodId").val(), "Selected": false });
  108. }
  109. });
  110. $.uniform.update(set);
  111. $.post("/DiscountInfo/UpdateDiscountGoodLists", { "list": list }, function () { });
  112. });
  113. });
  114. </script>

Service/asp.net mvc
  1. [HttpPost]
  2. public JsonResult DiscountGoodList(Guid id,datatables table)
  3. {
  4. int total = 0;
  5. var goods = productsService.GetList();
  6. var dGoods = discountgoodsService.GetList().Where(c => c.Deleted == false && c.RuleId == id);
  7. var query = from g in goods
  8. join t in categoryTypeServic.GetList() on g.CategoryTypeId equals t.Id
  9. join dg in dGoods on g.Id equals dg.GoodsId into joinDG
  10. from dept in joinDG.DefaultIfEmpty()
  11. select new GoodListItemViewModel
  12. {
  13. Id = g.Id,
  14. ImgPath = g.ImgPath,
  15. ProName = g.ProName,
  16. ProNumber = g.ProNumber,
  17. VipPrice = g.VipPrice,
  18. OrdinaryPrice = g.OrdinaryPrice,
  19. CategoryTypeId = g.CategoryTypeId,
  20. Selected = dept == null ? false : true,
  21. CategoryTypeName = t.TypeName
  22. };
  23. //数据总数(未过滤)
  24. total = query.Count();
  25. //搜索过滤
  26. if (string.IsNullOrWhiteSpace(table.search.value) == false)
  27. {
  28. query = query.Where(c=>c.ProName.Contains(table.search.value) || c.ProNumber.Contains(table.search.value) || c.CategoryTypeName.Contains(table.search.value));
  29. }
  30. #region 排序
  31. query = query.OrderBy(c => c.Id);
  32. foreach (var item in table.order)
  33. {
  34. if (item.dir == "asc")
  35. {
  36. switch (item.column)
  37. {
  38. case 0:
  39. query = query.OrderBy(c => c.Selected);
  40. break;
  41. case 2:
  42. query = query.OrderBy(c => c.ProName);
  43. break;
  44. case 3:
  45. query = query.OrderBy(c => c.ProNumber);
  46. break;
  47. case 4:
  48. query = query.OrderBy(c => c.CategoryTypeName);
  49. break;
  50. case 5:
  51. query = query.OrderBy(c => c.OrdinaryPrice);
  52. break;
  53. case 6:
  54. query = query.OrderBy(c => c.VipPrice);
  55. break;
  56. default:
  57. query = query.OrderBy(c => c.Selected);
  58. break;
  59. }
  60. }
  61. else {
  62. switch (item.column)
  63. {
  64. case 0:
  65. query = query.OrderByDescending(c => c.Selected);
  66. break;
  67. case 2:
  68. query = query.OrderByDescending(c => c.ProName);
  69. break;
  70. case 3:
  71. query = query.OrderByDescending(c => c.ProNumber);
  72. break;
  73. case 4:
  74. query = query.OrderByDescending(c => c.CategoryTypeName);
  75. break;
  76. case 5:
  77. query = query.OrderByDescending(c => c.ProName);
  78. break;
  79. case 6:
  80. query = query.OrderByDescending(c => c.ProNumber);
  81. break;
  82. default:
  83. query = query.OrderByDescending(c => c.Selected);
  84. break;
  85. }
  86. }
  87. }
  88. #endregion
  89. DatatablesResult<GoodListItemViewModel> jsModel = new DatatablesResult<GoodListItemViewModel>(query, table.start, table.length, table.draw, total);
  90. return Json(jsModel);
  91. }
  92. public class datatables
  93. {
  94. public datatables()
  95. {
  96. this.columns = new List<datatables_column>();
  97. this.order = new List<datatables_order>();
  98. }
  99. public int draw { get; set; }
  100. public List<datatables_column> columns { get; set; }
  101. /// <summary>
  102. /// 排序
  103. /// </summary>
  104. public List<datatables_order> order { get; set; }
  105. /// <summary>
  106. /// 数据开始位置,从0开始
  107. /// </summary>
  108. public int start { get; set; }
  109. /// <summary>
  110. /// 分页大小,-1代表不分页全部返回
  111. /// </summary>
  112. public int length { get; set; }
  113. /// <summary>
  114. /// 全局的搜索条件
  115. /// </summary>
  116. public datatables_search search { get; set; }
  117. }
  118. public class datatables_column
  119. {
  120. public int data { get; set; }
  121. public string name { get; set; }
  122. public bool searchable { get; set; }
  123. public bool orderable { get; set; }
  124. public datatables_search search { get; set; }
  125. }
  126. public class datatables_search
  127. {
  128. public string value { get; set; }
  129. public string regex { get; set; }
  130. }
  131. public class datatables_order
  132. {
  133. public int column { get; set; }
  134. public string dir { get; set; }
  135. }
  136. public class DatatablesResult<T>
  137. {
  138. public DatatablesResult(IQueryable<T> source, int start, int length, int draw, int recordsTotal)
  139. {
  140. this.draw = draw;
  141. this.recordsTotal = recordsTotal;
  142. this.recordsFiltered = source.Count();
  143. this.data = source.Skip(start).Take(length).ToList();
  144. }
  145. public DatatablesResult(IList<T> source, int start, int length, int draw, int recordsTotal)
  146. {
  147. this.draw = draw;
  148. this.recordsTotal = recordsTotal;
  149. this.recordsFiltered = source.Count();
  150. this.data = source.Skip(start).Take(length).ToList();
  151. }
  152. public DatatablesResult(IEnumerable<T> source, int start, int length, int draw, int recordsTotal)
  153. {
  154. this.draw = draw;
  155. this.recordsTotal = recordsTotal;
  156. this.recordsFiltered = source.Count();
  157. this.data = source.Skip(start).Take(length).ToList();
  158. }
  159. public DatatablesResult(IEnumerable<T> source, int recordsFiltered, int draw, int recordsTotal)
  160. {
  161. this.draw = draw;
  162. this.recordsTotal = recordsTotal;
  163. this.recordsFiltered = recordsFiltered;
  164. this.data = source.ToList();
  165. }
  166. public int draw { get; /*private*/ set; }
  167. public int recordsTotal { get; /*private*/ set; }
  168. public int recordsFiltered { get; /*private*/ set; }
  169. public IList<T> data { get; /*private*/ set; }
  170. }

最终效果图



参考资料
datatables.js 简单使用--多选框和服务器端分页 http://www.cnblogs.com/lanshanke/p/5058865.html
 服务器处理(Server-side processing) http://datatables.club/manual/server-side.html

JQuery Datatables服务器端处理示例的更多相关文章

  1. Jquery DataTables相关示例

    一.Jquery-DataTables DataTables 是jquery的一个开源的插件.它具有高度灵活的特性,基于渐进增强的基础,可以为任何表格添加交互.它特性如下: 提供分页,搜索和多列排序: ...

  2. [jQuery]jQuery DataTables插件自定义Ajax分页实现

    前言 昨天在博客园的博问上帮一位园友解决了一个问题,我觉得有必要记录一下,万一有人也遇上了呢. 问题描述 园友是做前端的,产品经理要求他使用jQuery DataTables插件显示一个列表,要实现分 ...

  3. jquery.datatables中文使用说明

    http://www.cnblogs.com/taizhouxiaoba/archive/2009/03/17/1414426.html 本文共四部分:官网 | 基本使用|遇到的问题|属性表 一:官方 ...

  4. jQuery datatables

    jQuery datatables 属性,用例 参考:http://datatables.club/example/ http://blog.csdn.net/mickey_miki/article/ ...

  5. datatables插件适用示例

    本文共四部分:官网 | 基本使用|遇到的问题|属性表 一:官方网站:[http://www.datatables.NET/] 二:基本使用:[http://www.guoxk.com/node/jQu ...

  6. jQuery dataTables四种数据来源[转]

    2019独角兽企业重金招聘Python工程师标准>>> 四种数据来源 对于 dataTables 来说,支持四种表格数据来源. 最为基本的就是来源于网页,网页被浏览器解析为 DOM ...

  7. ASP.NET MVC+EF在服务端分页使用jqGrid以及jquery Datatables的注意事项

    引言: 本人想自己个博客网站出来,技术路线是用ASN.NET MVC5+EF6(Code First)+ZUI+各种Jquery插件,有了这个想法之后就开始选择UI,看了好多bootstrap的模板之 ...

  8. jQuery DataTables && Django serializer

    jQuery DataTables https://www.datatables.net 本文参考的官方示例 http://datatables.net/release-datatables/exam ...

  9. jquery datatables api (转)

    学习可参考:http://www.guoxk.com/node/jquery-datatables http://yuemeiqing2008-163-com.iteye.com/blog/20069 ...

随机推荐

  1. java内存泄漏

    java内存泄漏主要分成两个方面: (1)堆中申请的空间没有被释放 (2)对象已不在被使用,但是仍然存在在内存当中 以下集中情况可能会导致内存泄漏 (1)静态集合的使用hashmap和vector,静 ...

  2. TP-LINK telnet远程 重启路由器

    突然断网,以前房东的路由器管理页面可以打开,今天突然间就打不开了.ping了下,可以ping通,于是就想起了房东的路由器是TP-LINK的 可以 telnet登陆的.每次,断网,我都会重启房东的路由器 ...

  3. Webalizer中文安装解析IP配置

    之前安装的都是英文的,现在替换成中文的,并且新增ip位置解析  参考地址 : http://haolulu.blog.51cto.com/3164472/630894 1.安装webalizer所需的 ...

  4. python 装饰器初步学习

    第一步 简单函数 ''' 简单的函数:调用两次''' def myfunc(): print ('myfunc() called.') myfunc() myfunc() 第二步 装饰器为调用函数提供 ...

  5. IOS 开发下拉刷新和上拉加载更多

    IOS 开发下拉刷新和上拉加载更多 简介 1.常用的下拉刷新的实现方式 (1)UIRefreshControl (2)EGOTTableViewrefresh (3)AH3DPullRefresh ( ...

  6. java中类型转换

    1.基本数据类型转换    char, byte,short,int,long,float,double,boolean (1)小类型数据可以直接赋给大类型数据          例:char a=' ...

  7. Orchard Application Host

    https://orchardapphost.codeplex.com/ 近一步将Orchard框架发扬光大,还可以用来作为非Web应用的框架,如控制台程序,同时使用到Orchard框架的特性: 1. ...

  8. 记一次Redis和NetMQ的测试

    Redis是一个高速缓存K-V数据库,而NetMQ是ZeroMQ的C#实现版本,两者是完全不同的东西. 最近做游戏服务器的时候想到,如果选择一个组件来做服务器间通信的话,ZeroMQ绝对是一个不错的选 ...

  9. React Native移动框架功能研究

    React Native移动框架功能研究 此篇只研究React Native框架的功能. 一.React Natvie是什么 React Native是使用React(或者说JS)来开发原生APP的框 ...

  10. Unity3D热更新全书-脚本(四) 用C#LightEvil搭建实际开发使用的脚本框架

    C#LightEvil之前提供了很多和Unity结合的例子,都是采用把脚本文件放置在StreamingAssets中的方法. 这样可以利用Unity的特性,放在这个目录中的CS文件会被编译器编译,我们 ...