Can someone assist me with dynamically hiding specific columns in Tanstack table ver 8?
I have a column defined as follows:
{
header: "Case Number",
accessorKey: "caseNumber",
visible: false, // using this value
},
I am attempting to utilize the "visible: false" property to hide the column upon rendering the table.
Although there is a setting for columnVisibility, I am having difficulties getting it to work properly.