Semantic UI Sortable Table Exclude Column

699 Views Asked by At

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.

Semantic UI Tables

Please advice, thank you.

1

There are 1 best solutions below

1
On BEST ANSWER

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)');