Search
11152 results 6831-6840
Forum
- 4th Nov 2013Date Sorting not working in Firefox & I. Explorer.There is an example of how to use sorting plug-ins here: http://datatables.net/release-datatables/examples/plug-ins/sorting_sType.html Allan
- 30th Oct 2013Avoid DataTables sortingThe bSort feature can be used to disable DataTables sorting. Allan
- 8th Oct 2013Disabling arrows for sortingTo be honest I'm not sure. I'd say, right click in the sorting element in chrome and pick "Inspect element". The will tell you where the style is coming from. Allan
- 2nd Oct 2013Filter breaks sortingthis caching breaks the sorting, as _fnFilter does not consider the (sorted) aiDisplayMaster but the table
- 1st Oct 2013How to change the position of sorting icons?which row gets the sorting magic with bSortCellsTop. By
- 25th Sep 2013sorting by uk date and time regex not workingthat needed this UK sorting.
- 12th Sep 2013Sorting money values (BRL) not working very wellcan the problem on sorting. With sorting of date
- 3rd Sep 2013how can i disable sorting in jquery.dataTables.min.jsThe link aaronw give for bSort shows how to disable sorting in the example code: [code] $('#example').dataTable( { "bSort": false } ); [/code] Allan
- 13th Aug 2013Sorting by Numbersor 110% then the sorting labels don't show up
- 30th Jul 2013Sorting icon appears twice in using FixedColumns pluginCan you have a look at the element in the DOM (e.g. using Firebug)? Normally, a header looks like this: [code] Rendering engine [/code] The table sorting icon is added by CSS [code] .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; } [/code]