4

これは明らかなはずですが、ドキュメントで見つけることができません。

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" のマークにするにはどうすればよいですか?

4

1 に答える 1

6

必要な出力を取得するには、構成が次のようになる必要があります。

config.model Article do
  list do
    field :title
    field :created_at
    field :updated_at
  end
  edit do
    field :title
    field :description, :string do  #use second parameter to set field type
      required true #this will just set a hints text
      #to set max length use:
      html_attributes do
       {:maxlength => 600} #dont use 600 as maxlength for a string field. It will break the UI
      end
    end
  end
end
于 2013-10-24T01:25:35.257 に答える