0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

f.collection_selectにclassを設定する

Last updated at Posted at 2021-01-28

##やりたいこと
collection_selectのクラスにform-controlを指定して見た目を整えたい。

##失敗例

f.collection_select :thank_ids, @thank, :id, :human, prompt: "選択して下さい", class: "form-control"

オプションの後にクラスを記述しても何故か適用されない。

##成功例

f.collection_select :thank_ids, @thank, :id, :human, {prompt: "選択して下さい"}, {class: "form-control"} 

オプションとクラスを{}で囲むことで適用された。クラスだけでなくオプションも{}で囲まないと適用されなかった。
ちなみにオプションを指定しない場合でも下記の通りクラスはオプションの後に書く必要がある。

f.collection_select :thank_ids, @thank, :id, :human, {}, {class: "form-control"} 
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?