How to exclude first and last column from column visibility?
How to exclude first and last column from column visibility?

buttons: [
{
extend: 'colvis',
columns: ':gt(0)'
}
]
this exclude first column i want to exclude first and last column
This discussion has been closed.
Answers
Hi @abhi_blancos ,
You could use
:not(':first,:last')
, like this example here., or you could assign a class like this example here.Cheers,
Colin