2017-05-31 6 views
0

私はRuby on Railsで新しく、私のアプリケーションでadminパネル用のrails_admin gemを使用しています。しかし、それは "Add New"のために非常に多くのラベルを持っています。しかし、私には必要ないものがいくつかあります。すでに宝石ファイルhttps://github.com/sferik/rails_admin/wikiを読んでいます。しかし、どうして私はそれらを削除することができますか? enter image description hereRails_adminはオプションのラベルを削除します

また、現在のユーザーIDをこの投稿に追加する方法もわからないので、ここでユーザーを選択する必要はありません。

ありがとうございます。

答えて

0
私は コメントを読んでくださいコードスニペットを両方ご質問にお答えしようとするでしょう

class YourObject < ApplicationRecord 
    rails_admin do 
    edit do 
     field :user do 
     help nil # This is the word 'Required' in your screenshot 
     label 'Person' # for rails admin the label might mean something different than to you in this question 

     default_value do 
      bindings[:view]._current_user.id # This is what you want as the default 
     end 

     read_only true # You can go as far as not letting the current user to change this field 
     end 
    end 
    end 
end 
関連する問題