diff options
author | Vasiliy Ermolovich <younash@gmail.com> | 2013-07-20 15:36:27 +0300 |
---|---|---|
committer | Vasiliy Ermolovich <younash@gmail.com> | 2013-07-20 17:14:28 +0300 |
commit | cadfe4bf452e5ae1f4e54a01709f6eba6eb17dc2 (patch) | |
tree | 641b9f8440163b24eeb72078cb19829dfc7998c8 /actionview/lib | |
parent | eda66d89c74cd573f5c0f24877fe9bf3c6a338ba (diff) | |
download | rails-cadfe4bf452e5ae1f4e54a01709f6eba6eb17dc2.tar.gz rails-cadfe4bf452e5ae1f4e54a01709f6eba6eb17dc2.tar.bz2 rails-cadfe4bf452e5ae1f4e54a01709f6eba6eb17dc2.zip |
add support for html attributes to grouped_options_for_select
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/form_options_helper.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_options_helper.rb b/actionview/lib/action_view/helpers/form_options_helper.rb index 4e9ef94ff3..8351548f06 100644 --- a/actionview/lib/action_view/helpers/form_options_helper.rb +++ b/actionview/lib/action_view/helpers/form_options_helper.rb @@ -520,12 +520,16 @@ module ActionView end grouped_options.each do |container| + html_attributes = option_html_attributes(container) + if divider label = divider else label, container = container end - body.safe_concat content_tag(:optgroup, options_for_select(container, selected_key), :label => label) + + html_attributes = { :label => label }.merge(html_attributes) + body.safe_concat content_tag(:optgroup, options_for_select(container, selected_key), html_attributes) end body |