我在此链接中使用Datatable来显示网格。 https://datatables.net/examples/basic_init/hidden_columns.html
我使用(columnDefs.targets)显示了一对默认列,然后我添加了显示和隐藏此链接列的功能:
https://datatables.net/examples/api/show_hide.html
首先我加载页面是正确的并显示默认列,当我尝试显示/隐藏时,它显示所有列而不是默认列,我不知道如何只显示默认列。
这是我的代码:
$(document).ready(function () {
var table = $('#DataLegal').DataTable({
"columnDefs": [
{
"targets": [ 4,5,6,7,8,9,10,14,15,16,17,18,19,20,21,22,23,24,25,26,27],
"visible": false
// "searchable": false
}
]
} );
//This is show/Hide part
var ms = $('#magicsuggest').magicSuggest({
// Converts our C# object in a JSON string.
data: @Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(columns))
});
$(ms).on('selectionchange', function(e,m){
// Turn on columns
$.each(table.columns()[0], function(index) {
table.column(index).visible(true);
//here how I can only turned on the DefColumns?
});
// Turn off each column in the value array... Value = int[0,1, 2, ...]
$.each(this.getValue(), function(index, item) {
table.column(item).visible(false);
});
});
});
答案 0 :(得分:0)
您是否尝试过存储该目标列表?
然后只更新每个功能中的列表?像这样的东西?
$(document).ready(function () {
var targetArr = [4,5,6,7,8,9,10,14,15,16,17,18,19,20,21,22,23,24,25,26,27];
var table = $('#DataLegal').DataTable({
"columnDefs": [{
"targets": targetArr,
"visible": false
// "searchable": false
}]
});
$(ms).on('selectionchange', function(e,m){
// Turn on columns
$.each(table.columns()[0], function(index) {
if($.inArray(item, targetArr)){
table.column(item).visible(true); //in case some values were false set all to true
} else {
table.column(item).visible(false);//in case some values were true set all to false
}
});
$.each(this.getValue(), function(index, item) {
table.column(item).visible(false);
});
});
});
答案 1 :(得分:0)
您可以按columnDefs
,
table.init().columnDefs
设置
table.init().columnDefs[0].targets
将返回上面的[ 4,5,6,7,8,9,10,14,15,16...]
数组。创建隐藏列的值的显示/隐藏选择框的快速方法可以是
show / hide column :<select id="columns"></select>
填充隐藏的列
table.init().columnDefs[0].targets.forEach(function(column) {
$("#columns").append('<option value="'+column+'">show / hide column #'+column+'</option>');
})
当用户在选择框中选择一列时显示/隐藏列
$("#columns").on('change', function() {
table.column(this.value).visible(!table.column(this.value).visible())
})
演示 - &gt;的 http://jsfiddle.net/dwhwftxc/ 强>