Avoid sort on last row in the table DataTable plugin
datatables, jquery, sorting
Solution
The HTML needs to have a specific setup with thead and tbody tags. So theoretically I could put my last row into a tfoot tag and it wouldn't be affected by sorting.
hope this will work for you.
http://blog.adrianlawley.com/tablesorter-jquery-how-to-exclude-rows/
Problem
``` var oTable = $('#table').dataTable({ "sScrollX": "100%", "sScrollXInner": "150%", "bScrollCollapse": true, "bPaginate": false, "bFilter": false, "bSortable": true }); new FixedColumns(oTable, { "iLeftColumns": 1, "iRightColumns": 1 }); ``` I am using data table plugin, And my initialize code is as above, i want my last row not column not to be sorted, when i click on any header. I searched every where I couldn't find a way to stop row sorting...Please help me out..............