Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: sort by Column asc/desc #18

Open
muescha opened this issue Mar 23, 2019 · 2 comments
Open

Feature Request: sort by Column asc/desc #18

muescha opened this issue Mar 23, 2019 · 2 comments

Comments

@muescha
Copy link

muescha commented Mar 23, 2019

i like to order it by column (for example start time)

@hannsen
Copy link
Contributor

hannsen commented Nov 1, 2019

Tampermonkey script:

// ==UserScript==
// @name         Bahnguru datatables
// @namespace    http://bahn.guru/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://bahn.guru/day*
// @require      https://cdn.datatables.net/v/dt/jqc-1.12.4/dt-1.10.20/datatables.min.js
// @resource     https://cdn.datatables.net/v/dt/jqc-1.12.4/dt-1.10.20/datatables.min.css
// @grant        none
// ==/UserScript==

(function() {

    $('body').ready( function () {
        $('table#journeys').DataTable({
            "paging": false
        });
    } );
})();

@alexs77
Copy link

alexs77 commented Feb 6, 2023

Would be nice to sort on any column.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants