I am trying to conceal a column in jQuery datatables without removing it from the DOM completely. When I attempt to hide the column using the bVisible property, it disappears entirely.
My goal is to set the display property of the table cells in that column to none so that the values are hidden on the page, but still exist in the DOM. This column serves as a unique identifier for each row, and I need access to the unique ID when a row is selected. How can I accomplish this?
I am populating the table using the aaData property with server-side pagination.
I have reviewed this question, but their solutions seem to remove the column from the DOM entirely. jQuery datatables hide column