これは明らかなはずですが、ドキュメントで見つけることができません。
rails_admin を使用してシンプルな CMS を構築しています。
このことを考慮:
config.model Article do
list do
field :title
field :created_at
field :updated_at
end
edit do
field :title
field :description do
required true #this line is pseudo code! What is the real thing?
maxlength 600 #ditto this line
end
end
end
この 2 行の疑似コードを実際の "required" と "maxlength" のマークにするにはどうすればよいですか?