Sorting off
Sorting off
Hey!
I was wondering if I can somehow set sorting off as third state for sorting.
For example, if user clicks header three times, the sorting states would be:
1. Asc
2. Desc
3. Off, use default sorting
I'm not sure if this is possible, but it would be nice to have that option.
I was wondering if I can somehow set sorting off as third state for sorting.
For example, if user clicks header three times, the sorting states would be:
1. Asc
2. Desc
3. Off, use default sorting
I'm not sure if this is possible, but it would be nice to have that option.
This discussion has been closed.
Replies
Allan
Could fnSortNeutral be used with aoColumns somehow?
[code]
"aoColumns": [
{ "asSorting": [ "asc" ] },
{ "asSorting": [ "desc", "asc", fnSortNeutral ] },
{ "asSorting": [ "desc" ] }
[/code]
for example?
Allan
Thank you for your help.