dashed-slug.net › Forums › Exchange extension support › user order table › Reply To: user order table
December 19, 2018 at 11:24 am
#5330
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.