Disable Column Arrange ASC - Desc on a Particular Table Column
Disable Column Arrange ASC - Desc on a Particular Table Column

Hi
It it possible to disable ASC/DESC on an individual table column ?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use
columns.orderable
for this.Kevin
Kevin
Thanks,
I used script below and it worked, for Column 4 however, I am struggling with another column on the same table column 5, need to hide on both column 4 and 5 on the same table.
Syntax: -
"columnDefs": [{
orderable: false,
targets: 4
}],
OK, got it.
"columnDefs": [{
orderable: false,
targets: [4, 5]
}],
Thank you.