Sorting on the decimal values are not working
Sorting on the decimal values are not working
nandrai
Posts: 26Questions: 0Answers: 0
I have created the table with the data table 1.9 but my [code] sType": "formatted-num" [/code] is not working for me
i have created jsfiddle http://jsfiddle.net/hALDK/19/
The column Header [quote] BRR [/quote] is not sorting.
i am using
[code]
$(document).ready( function() {
$('#myTable').dataTable( {
"sPaginationType": "full_numbers",
"aoColumns": [null,null,null,null,null,null,null,null,{ "sType": "formatted-num" },null]
} );
} )
[/code]
i have created jsfiddle http://jsfiddle.net/hALDK/19/
The column Header [quote] BRR [/quote] is not sorting.
i am using
[code]
$(document).ready( function() {
$('#myTable').dataTable( {
"sPaginationType": "full_numbers",
"aoColumns": [null,null,null,null,null,null,null,null,{ "sType": "formatted-num" },null]
} );
} )
[/code]
This discussion has been closed.
Replies
Regarding your question - it looks like it is is not working because you haven't included the formatted numbers sorting plug-in: http://datatables.net/plug-ins/sorting#formatted_numbers
Allan