I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

user order table

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5323
    Anonymous
    Inactive

    A function is stored in which the user orders can be sorted in the table, e.g. by price amount or by date?

    #5330
    alexg
    Keymaster

    There is no such functionality. The user orders tables are not user-sortable. They are always sorted by descending date/time, as in most other exchanges.

    It would be somewhat confusing for users to sort the open orders in any other way.

    However, if you wish to do this anyway, it would be relatively straightforward with a jQuery plugin such as https://datatables.net/

    You would have to bind the call to the plugin on the wallets_exchange_ready bubbling event, like so:

    $( 'html' ).on( 'wallets_exchange_ready', function( event ) {
        $('.dashed-slug-wallets-exchange table').DataTable();
    } );

    Hope this helps.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.