Search
11152 results 6891-6900
Forum
- 10th Sep 2010How to only allow single column sortingrun with the multi-column sorting since it's cool and
- 26th Aug 2010How to disable sortingYep, that did the trick. To disable sorting completely I did this: $('#example').dataTable( { "bJQueryUI": true, "sPaginationType": "full_numbers", "aaSorting": [] } ); I had to add a comma after "full_numbers", and then I added the line: "aaSorting": [] Thats all there was to it.
- 8th Jun 2010Disable sorting for certain rowsNo, there is no easy way. Sorting is done on columns and that sorts all rows.
- 7th Jun 2010Odd Sorting BehaviourSounds very odd! DataTables should be using just string sorting for this kind of thing. Could you show us an example of the HTML you are using? Allan
- 28th May 2010sorting images are not displayed in my tablethe your code for sorting. Use this, "aoColumns": [ { "sClass":
- 4th May 2010Data sorting : correct in FF / the opposit in IETry sorting without HTML tags: http://datatables.net/examples/advanced_init/html_sort.html Allan
- 15th Mar 2010Disable sorting for column 'special' columnsif it's just the sorting you are interest it.
- 21st Feb 2010Complex: Sorting grid with different row elementsHi Fab, Sorting without HTML tags (i.e. removing span etc): http://datatables.net/examples/advanced_init/html_sort.html Live DOM sorting on input elements: http://datatables.net/examples/plug-ins/dom_sort.html Allan
- 7th Feb 2010Multi-column sorting not working with FixedHeaderof FixedHeader introduced multi-column sorting abilities. The thing about
- 22nd Jan 2010extracting data from a table cell for sortingI'm not 100% sure what you mean. Do you mean you want to do sorting which isn't provided by the internal methods DataTables provides (i.e. custom sorting)? DataTables allows for this via the sorting plug-ins: http://datatables.net/plug-ins/sorting http://datatables.net/development/sorting Regards, Allan