Rob Garrison
Rob Garrison
Please check out one of the [demos on the main wiki page](https://github.com/Mottie/tablesorter/wiki#basic-demos) - there are some ajax examples. Once you open the demo, modify the code, save and share the...
Hi @ken-colvin! On the [home wiki page](https://github.com/Mottie/tablesorter/wiki) is an entry named "Filter empty cells". It leads you to: - This demo: http://jsfiddle.net/Mottie/856bzzeL/117/ (change jQuery to v3.3.1 to get it to...
Did you switch the jQuery version in the demo to version 3.3.1? It was working for me when I did that.
Hi @ken-colvin! There is a select2 option named [`sortResults`](https://select2.github.io/select2/#doc-sort-results), that will allow you to sort the dropdown results: ```js sortResults: function(results) { return results.reverse(); } ``` I've updated [this demo...
Manually click on the header, set the initial sort using [`sortList`](https://mottie.github.io/tablesorter/docs/#sortlist) or use the [`sorton` method](https://mottie.github.io/tablesorter/docs/#sorton) to programmically sort the table.
I'll look into this over the weekend. Thanks for your patience.
Sorry, this is taking longer than I thought... so much stuff to update!
Hi @pasquab! The "scroller" widget isn't compatible with a lot of widgets, especially the dragtable mod widget. I don't have an alternative or easy solution for this.
Try this: ```js filter_functions: { 3: function (e, n, f, i, $r, c, data) { return f.split("|").some(ff => e.startsWith(ff)); }, }, ```
Hi @ItisSaurav! As you can see from the [commit list](https://github.com/Mottie/tablesorter/commits/master), no significant changes have been made in over a year - yikes, I've been neglecting this library! First off, I...