Get an array of column visibility?

Get an array of column visibility?

triplethreat77triplethreat77 Posts: 4Questions: 4Answers: 0

Using the colVis plugin, I need an array of my table columns and their visibility (to load back later). So far:

table.on('column-visibility', function (e, settings, colIdx, visibility) {

$('thead tr th').each(function () {
    var item = {};
    item.name = table.column(this).header().id

    // not correct for true/false visibility
    //item.visible = table.column(this).visible()

    orderarray.push(item);
});

});

How do I get the visibility state of each column?

This discussion has been closed.