Excluding columns from sorting
Excluding columns from sorting
Is there please a way to exclude some columns from sorting?
Like I have 5 columns in my script at http://preferans.de/top20.php
Position, Status, Name, City, Money
and I'd like the "Status" and "Money" to be non-sortable (i.e. don't display triangles on them)
Thank you
Alex
Like I have 5 columns in my script at http://preferans.de/top20.php
Position, Status, Name, City, Money
and I'd like the "Status" and "Money" to be non-sortable (i.e. don't display triangles on them)
Thank you
Alex
This discussion has been closed.
Replies
Allan
[code]
"aoColumns": [
/* pos */ { "bSearchable": false },
/* image */ { "bSearchable": false, "bSortable": false },
/* name */ null,
/* city */ null,
/* money */ { "bSearchable": false, "bSortable": false }
],
[/code]