私はRails_Adminを試しています。記事のセットについては、私は祖先を使用しています。したがって、新しい&編集ページのドロップダウンリストを作成して、適切な親記事を選択できるようにしたいと考えています。祖先とrails_admin、ドロップダウン
私の現在の設定:
config.model Article do
# # Found associations:
# Found columns:
field :id, :integer
field :title, :string
field :description, :text
field :content, :text do
ckeditor true
end
#field :created_at, :datetime
#field :updated_at, :datetime
field :ancestry, :enum do
@articles = Article.scoped
@articles.arrange(:order => :created_at)
end
# Sections:
list do; end
export do; end
show do; end
edit do; end
create do; end
update do; end
end
ので、かなり標準、除く:列挙型フィールド。私はここで何か間違っていなければならない。何か案は?
私はすでにHow to arrange entries from Ancestry tree in dropdown list in Rails 3?を見たことがありますが、間違っていない限り、彼らはかなりの質問をしています。私はアレンジ機能を利用したいと思います。
でこれを置く:[:オブジェクト] =バインディングを除いては.id.nil? ? 0:bindings [:object] .id – quatermain