LoginSignup
0
0

More than 5 years have passed since last update.

区切り線で区切られたプルダウンの作成

Last updated at Posted at 2015-07-22

下記のようにプルダウンの項目を区切り線で区切ってグルーピングしたい時、grouped_options_for_select でプルダウン内の選択項目を作成することで「opt group label」を使用したグルーピングが実現できます。
-------
 AAAA
 BBBB
-------
 ああああ
 いいいい

実際のviewで記述されるコードは下記のようになります。
ruby:
= select :page, :subject, grouped_options_for_select([['AAAA','BBBB'],['ああああ','いいいい']], nil, divider: '-------')

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