如何获取数据表可见列数据库中保存状态的索引

时间:2019-06-17 09:08:07

标签: jquery asp.net asp.net-mvc datatable datatables

单击按钮以将状态保存在数据库中时,我想获得总可见列名称。

示例-imageHeader

将列名保存在数据库中之后,当用户返回到该表时,他应该只能看到他已保存在数据库中的那些列。

  

当用户返回时,然后显示带有列名称的列-Col1,Col2,Col3,Col4,Col8,Col9

我发现这些功能可以动态隐藏/显示列-

显示列colName - Col1, Col2, Col3, Col4, Col8, Col9

隐藏列oTable.fnSetColumnVis(item, true,false);

结论

  1. 如何获取数据表中可见列名称的总列表?

  2. 当用户重新登录时,他应该只能看到上次保存的那些列?

任何输入都会有所帮助。

2 个答案:

答案 0 :(得分:1)

使用DataTable.columns().visible()

更新

使用columns().every( fn )

let dataTable = $('#example').DataTable({
  "colReorder": true,
  "columnDefs": [
    { "visible": false, "targets": [1] },
    { "visible": false, "targets": [4] },
    { "visible": false, "targets": [5] },
  ]
});

// let result = dataTable.columns().visible().reduce((a, v, i) => v ? [...a, i] : a, [])

// console.log(result)

dataTable.on('column-reorder', function() {
  console.clear();
  dataTable.columns().every(function(i) {
    this.visible() && console.log(i, this.header().innerHTML)
  });
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css" rel="stylesheet" />
<link href="https://cdn.datatables.net/colreorder/1.5.1/css/colReorder.dataTables.min.css" rel="stylesheet" />
<script src="https://cdn.datatables.net/colreorder/1.5.1/js/dataTables.colReorder.min.js"></script>


<table id="example" class="display" style="width:100%">
  <thead>
    <tr>
      <th>Name</th>
      <th>Position</th>
      <th>Office</th>
      <th>Numero</th>
      <th>Start date</th>
      <th>Salary</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Tiger Nixon</td>
      <td>System Architect</td>
      <td>Edinburgh</td>
      <td>155555</td>
      <td>2011/04/25</td>
      <td>$320,800</td>
    </tr>
    <tr>
      <td>Garrett Winters</td>
      <td>Accountant</td>
      <td>Tokyo</td>
      <td>63</td>
      <td>2011/07/25</td>
      <td>$170,750</td>
    </tr>
    <tr>
      <td>Ashton Cox</td>
      <td>Junior Technical Author</td>
      <td>San Francisco</td>
      <td>1</td>
      <td>2009/01/12</td>
      <td>$86,000</td>
    </tr>
  </tbody>
</table>

答案 1 :(得分:1)

  

如何获取数据表中可见列的总列表?

扩展@Aswin Kumar答案

let dataTable = $('#example').DataTable({
  "columnDefs": [
    { "visible": false, "targets": [1] },
    { "visible": false, "targets": [4] },
    { "visible": false, "targets": [5] },
  ]
});

let result = dataTable.columns().visible().reduce((a, v, i) => v ? [...a, i] : a, [])

console.log(result) // Gives you index list of all the visible columns
  

当用户重新登录时,他应该只能获取那些索引   他上次保存的是什么?

这可能有点棘手。

您需要将每个列值保存在数据库中,并在表加载时获取这些值并使用它们显示列

类似的东西

table.columns( [ 0, 1, 2, 3 ] ).visible( false, false );

更多String.fromCharCode

编辑1:

获取所有可见的列名称和索引。

function get_visible_columns() {
    //console.log(table);
   var all_columns = table.settings().init().columns;
    console.log('all_columns', all_columns);
    var visible_columns = [];
    for (var i in all_columns) {
        if (table.column(all_columns[i].name + ':name').visible()) {
            visible_columns.push(all_columns[i].name);
            console.log("index: "+i);
        }
    }

    alert(visible_columns.join(', '));
}

索引将用于还原所有可见列

table.columns( [ 0, 1, 2, 3 ] ).visible( false, false );

Detail here