Open GoogleCodeExporter opened 8 years ago
I'm also looking for this issue to be fixed. I have my server handle the sort
and datatables leaves that alone for me, but when I use the grouping plugin, it
sorts it by the grouping, which I don't want.
Original comment by shaymerr...@gmail.com
on 11 Jul 2013 at 7:21
any luck on this? this completely defeats the purpose of my table. group and
sort are not the same thing why are they being treated as such?
Original comment by m...@tactmarketing.com
on 2 Oct 2013 at 5:23
nm I solved by commenting out lines 626-632, seems to work
var aaSortingFixed = new Array();
aaSortingFixed.push([properties.iGroupingOrderByColumnIndex, properties.sGroupingColumnSortDirection]);
if (properties.iGroupingColumnIndex2 != -1) {
aaSortingFixed.push([properties.iGroupingOrderByColumnIndex2, properties.sGroupingColumnSortDirection2]);
} // end of if (properties.iGroupingColumnIndex2 != -1)
oTable.fnSettings().aaSortingFixed = aaSortingFixed;
Original comment by m...@tactmarketing.com
on 2 Oct 2013 at 5:30
#3 will not fix the problem.
This will disable the sorting part and grouping as well. I mean we get rid of
sorting but grouping is not proper after applying #3.
Original comment by manishsp...@gmail.com
on 22 May 2015 at 11:57
Under categories I need to show some profiles. Initially from the database I am
fetching the data with categories as asc sorting and need to show as it is.
However Jquery is making the default sorting with first column. If I remove the
sorting feature I can show the grid correct initially but I also need to have
Sorting feature in the grid. Can anyone please let me know if you found any
custom code for this.
Regards
Madhu
Original comment by sms02...@gmail.com
on 3 Aug 2015 at 11:15
Note : I am using the category column as the row grouping.
Original comment by sms02...@gmail.com
on 3 Aug 2015 at 11:17
Original issue reported on code.google.com by
l...@tikalk.com
on 2 Dec 2012 at 8:42