Search
11152 results 341-350
Forum
- 16th Jun 2013How to sort on this column?that you want to sort on: http://datatables.net/development/sorting#type_based . There are a number of sorting plug-ins already valuable here
- 13th Jun 2013setting classes on headers for table with no initial sortThis seems to do the trick: [code] $('table th:first').removeClass().addClass('sorting_asc'); [/code] removeClass() with no params removes all the previous classes, then we add the ascending sort class (naturally run this after .dataTable() is finished)
- 6th Jun 2013Lost column/cell style upon sortalso firing when i sort OR fnUpdate a cell
- 29th May 2013Sort on startup, and javascript sortUse aaSorting for initial sort and fnSort to perform a sort. Allan
- 24th May 2013How to cancel a sort event after it is fired?column and turned off sorting on the 1% width
- 23rd May 2013Using jqueryui themes, sort icon + row header on separate linesThanks a lot hugehugh !! Finally your trick worked for me!! "Error Was:"The Datatables sort icon, on column headers, by default appears under the column header text" ". Regards Kailash Nirmal
- 10th May 2013Cant sort a column with custom typea column it doesnt sort. Instead it does nothing.
- 19th Apr 2013No automatic sort?Yup - no problem. Just set the aaSorting option to be an empty array in the initialisation of your table. That will apply no default sort, but allow the user to sort the table if they want. Allan
- 16th Apr 2013DataTables 1.9.4: Can't Sort (With Test Case)plain text) columns wouldn't sort. Perhaps that should be
- 20th Mar 2013Best way to default sort?Does aaSorting support custom sorts? Yes :-). As long as your content can be sorted correctly (for which you might need a sorting plug-in in this case), aaSorting can do a multi-column sort. Allan