Search
11152 results 7421-7430
Forum
- 9th Jun 2015How to ignore text in number column when sorting eg 2cmthank you Allan.
- 27th May 2015Paging and sorting with custom server APIAlso it is documented. If you want to override the DataTables parameters, you need to use ajax.data to transform them as needed. Allan
- 26th Feb 2015Slow Sorting with Bootstrap/Responsive siteOk, thanks.
- 29th May 2014How do I highlight the sorted column like the "order-column" class with Bootstrap 3?One way I've got it working is to manually add the CSS for order-columns but I'm not sure if this is how it it's intended to be done. relevant css table.dataTable.order-column tbody tr > .sorting_1, table.dataTable.order-column tbody tr > .sorting_2, table.dataTable.order-column tbody tr > .sorting_3 { background-color: #f9f9f9; }
- 27th May 2014Category filter in combination with sorted data - how to make this workBrilliant, going to try this out tomorrow and report back!
- 23rd Apr 2014 in .sorting_*Yup, probably the best solution for the moment. DataTables 1.10 introduces the concept of 'renderers' which will make this kind of thing possible via plug-ins in future. Allan
- 22nd Jan 2014Sorting Currency IssuesCan you link to the page so I can fix that please? Allan
- 3rd Nov 2013sorting decimal column with comma separated in jquery data table gridAs noted in the forum rules, please link to a test case showing the problem. Allan
- 27th Sep 2013datatables with jeditable plugin - sorting dropdown listor datatables... The browser sorts this JSON by key
- 3rd Sep 2013set lastcoloumn descending sortedYou need to count the number of columns in the table (use fnGetData on a single row and get the length of it perhaps?) and use that as the basis for calling fnSort . Allan