I have column on index page in ActiveAdmin:
column("Credit amount", sortable: true) {|u| u.credit_amount.format }
I'm using gem money-rails
for :credit_amount
and .format
method on index page for readability.
But sorting doesn't work. How can I make sorting from largest to smallest and vice versa for this column?