• bootstrap-table 中实现,点击翻页,记录上页/下页选中的行


    bootstrap-table中实现,翻页之后再返回,依然选中的情况

     1 //var productids = $("body",window.parent.frames[0].document).find('.ptids');//textarea存放数据
     2 var productids = $('textarea');
     3 var merge_order_object= {};//页码+id组成的对象
     4 var jsonObj = {};
     5 var current_page = "";//当前页码
     6 
     7 //表格渲染完成操作
     8 table.on('post-body.bs.table', function (e, settings, json, xhr) {
     9 
    10   var merge_order_arr = [];
    11   var objString = productids.val();
    12   if(objString !== ""){
    13     jsonObj = JSON.parse(objString);//转换为json对象
    14     $.map(jsonObj, function (arr) {
    15       // merge_order_arr.push.apply(merge_order_arr,arr);//合并数组
    16       merge_order_arr = merge_order_arr.concat(arr);//合并数组
    17     });
    18     $.each(settings,function (i,v) {
    19       $.each(merge_order_arr,function (index,value) {
    20         if(v.id === parseInt(value)){
    21           $(e.target).find('tbody tr').eq(i).find('input').click();
    22         }
    23       });
    24     });
    25     // productids.val( objString );
    26   }
    27   // debugger;
    28 });
    29 $('input[name="btSelectAll"], table tbody, input[name="btSelectItem"]').change(function () {//复选框
    30   current_page = table.bootstrapTable('getOptions').pageNumber;
    31   merge_order_object[current_page] = Table.api.selectedids(table);
    32   productids.val( JSON.stringify(merge_order_object) );//转换成字符串
    33 
    34 });
     1 // 获取选中的条目ID集合
     2 selectedids: function (table) {
     3     var options = table.bootstrapTable('getOptions');
     4     if (options.templateView) {
     5         return $.map($("input[data-id][name='checkbox']:checked"), function (dom) {
     6             return $(dom).data("id");
     7         });
     8     } else {
     9         return $.map(table.bootstrapTable('getSelections'), function (row) {
    10             return row[options.pk];
    11         });
    12     }
    13 },
  • 相关阅读:
    访问的站点提示输入用户名密码
    ASP.NET Session 过期问题
    c#和VB代码转化网址
    整理 css 小技巧
    asp.net当修改header时提示:The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>)
    sql server 2005 replication 设置
    动态加载CSS和Javascript文件 javascript 和asp.net.
    一台机子上安装两个版本的mysql
    sql删除所有表外键和表
    Griview中的删除按钮添加“确认提示”
  • 原文地址:https://www.cnblogs.com/linka/p/7605357.html
Copyright © 2020-2023  润新知