≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
How to sort by doubleclicking (Header)
How to sort by doubleclicking (Header)
Maxx007
Posts: 4
Questions: 0
Answers: 0
August 2013
edited August 2013
in
General
Hi,
i try to change the one-click of the Header to double click, but i don't know to do that.
Did you get a idea ?!
Thank you in advance,
Maxi
Replies
allan
Posts: 65,846
Questions: 1
Answers: 10,956
Site admin
August 2013
You would need to change the code in DataTables, or write your own event handler which will use the
fnSort
API method.
Allan
Maxx007
Posts: 4
Questions: 0
Answers: 0
August 2013
Hey allan,
ok, i don't want to change the DataTable- Maincode, i think an extension is better because of updates. Actually i dont know to implement - are there some samplecodes ?
thanks very very much
Max
allan
Posts: 65,846
Questions: 1
Answers: 10,956
Site admin
August 2013
[code]
$('#element').on( 'dblclick', function () {
table.fnSort( [[ 0, 'asc' ]] );
} );
[/code]
You could add additional logic to have it sort desc on another double click if you want.
Allan
Maxx007
Posts: 4
Questions: 0
Answers: 0
August 2013
Hey, oh ok - is than the single- click disabled ?
thanks ;)
allan
Posts: 65,846
Questions: 1
Answers: 10,956
Site admin
August 2013
No - you'd need to unbind the DataTables default single click event handler.
Allan
Maxx007
Posts: 4
Questions: 0
Answers: 0
August 2013
Hey, how is this gooing ?
like this ?
$('#element').on( 'click', function () {
// nothing
} );
This discussion has been closed.
Replies
Allan
ok, i don't want to change the DataTable- Maincode, i think an extension is better because of updates. Actually i dont know to implement - are there some samplecodes ?
thanks very very much
Max
$('#element').on( 'dblclick', function () {
table.fnSort( [[ 0, 'asc' ]] );
} );
[/code]
You could add additional logic to have it sort desc on another double click if you want.
Allan
thanks ;)
Allan
like this ?
$('#element').on( 'click', function () {
// nothing
} );