Is there a way with the jquery datatables plugin to hide (and show) a table column?
I figured out how to reload the table data: using fnClearTable and <
fnClearTable
You can try as below to hide/show dynamically runtime
Hide : fnSetColumnVis( 1, false, false );
Example: oTable.fnSetColumnVis(item, false,false);
Show : fnSetColumnVis( 1, true, false );
Here, oTable is object of Datatable.