Semantic UI Sortable Table, are they any class/tag that I can exclude some column to be sortable.
Such as Action Button column which should be have sorting disabled.
Please advice, thank you.
Add the class no-sort class to the th
I looked at the javascript at
https://semantic-ui.com/javascript/library/tablesort.js
And saw the line
this.$sortCells = this.$thead.length > 0 ? this.$thead.find('th:not(.no-sort)') : this.$table.find('th:not(.no-sort)');