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!

Reply To: user order table

dashed-slug.net Forums Exchange extension support user order table Reply To: user order table

#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.