I have a column I want to hide sometimes. Can I set the column visible property programatically?
Hide a column:
$("#example-table").tabulator("hideColumn","name") //hide the "name" column
Hide directly on column component:
column.hide();
Toggle visibility:
$("#example-table").tabulator("toggleColumn","name") ////toggle the visibility of the "name" column
Toggle visibility on column component:
column.toggle();
Most helpful comment
Hide a column:
$("#example-table").tabulator("hideColumn","name") //hide the "name" columnHide directly on column component:
column.hide();Toggle visibility:
$("#example-table").tabulator("toggleColumn","name") ////toggle the visibility of the "name" columnToggle visibility on column component:
column.toggle();