diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2012-03-26 13:18:35 -0700 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2012-03-26 13:18:35 -0700 |
commit | 3f1b8c6a95fcdcdc14ecd0f6fe1758a1e1044269 (patch) | |
tree | ba3e8093a4980246205c99611395a9db9eecc40c | |
parent | ed7567ca7aa4ea3f29236229f4c1d366550a0c5c (diff) | |
parent | bd8a9701c27b4261e9d8dd84aebbde6ba784ed83 (diff) | |
download | rails-3f1b8c6a95fcdcdc14ecd0f6fe1758a1e1044269.tar.gz rails-3f1b8c6a95fcdcdc14ecd0f6fe1758a1e1044269.tar.bz2 rails-3f1b8c6a95fcdcdc14ecd0f6fe1758a1e1044269.zip |
Merge pull request #5596 from lest/patch-3
apply form_for namespace option to date_select
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 5 | ||||
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index 2b128e8445..c26f0d4911 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -940,7 +940,10 @@ module ActionView # Returns the id attribute for the input tag. # => "post_written_on_1i" def input_id_from_type(type) - input_name_from_type(type).gsub(/([\[\(])|(\]\[)/, '_').gsub(/[\]\)]/, '') + id = input_name_from_type(type).gsub(/([\[\(])|(\]\[)/, '_').gsub(/[\]\)]/, '') + id = @options[:namespace] + '_' + id if @options[:namespace] + + id end # Given an ordering of datetime components, create the selection HTML diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index 4dae5479d6..f9940ead58 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -960,6 +960,14 @@ class FormHelperTest < ActionView::TestCase assert_dom_equal expected, output_buffer end + def test_form_for_with_namespace_with_date_select + form_for(@post, :namespace => 'namespace') do |f| + concat f.date_select(:written_on) + end + + assert_select 'select#namespace_post_written_on_1i' + end + def test_form_for_with_namespace_with_label form_for(@post, :namespace => 'namespace') do |f| concat f.label(:title) |