check_box helper with :disabled => true generates disabled hidden field. fixes #1953

This commit is contained in:
Tadas Tamošauskas 2012-01-05 22:35:10 +00:00
parent be52f1bf2a
commit 9bd38f31be
3 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,9 @@
## Rails 3.2.0 (unreleased) ##
* check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form.
This is a behavior change, previously the hidden tag had a value of the disabled checkbox.
*Tadas Tamosauskas*
* Add font_path helper method *Santiago Pastorino*
* Depends on rack ~> 1.4.0 *Santiago Pastorino*

View File

@ -1091,7 +1091,7 @@ module ActionView
else
add_default_name_and_id(options)
end
hidden = tag("input", "name" => options["name"], "type" => "hidden", "value" => options['disabled'] && checked ? checked_value : unchecked_value)
hidden = tag("input", "name" => options["name"], "type" => "hidden", "value" => unchecked_value, "disabled" => options["disabled"])
checkbox = tag("input", options)
hidden + checkbox
end

View File

@ -386,11 +386,10 @@ class FormHelperTest < ActionView::TestCase
)
end
def test_checkbox_disabled_still_submits_checked_value
def test_checkbox_disabled_disables_hidden_field
assert_dom_equal(
'<input name="post[secret]" type="hidden" value="1" /><input checked="checked" disabled="disabled" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
check_box("post", "secret", { :disabled => :true })
'<input name="post[secret]" type="hidden" value="0" disabled="disabled"/><input checked="checked" disabled="disabled" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
check_box("post", "secret", { :disabled => true })
)
end