0
0

Rails Admin – 一覧ページでのデフォルトのソート順 ( ORDER )を決める

Posted at

正順

RailsAdmin.config do |config|
  config.model 'Example' do
    list do
      sort_by :name
    end
  end
end

逆順

RailsAdmin.config do |config|
  config.model 'Example' do
    list do
      field :name do
        sort_reverse true
      end
    end
  end
end

公式

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

プロフィール・経歴

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0