How to hide ascending descending icons in datatable js Code Example
how to hide ascending descending icons in datatable js
add this css on the top of page or in css file.
use respective class
.no-sort::after {
opacity: 0;
content:unset;
}
.no-sort {
opacity: 0;
content:unset;
}