提交 3be9e8a0 编写于 作者: R Rafael Mendonça França

Merge pull request #8002 from nashby/checkbox-include

check_box value can be not only an object of Array class
......@@ -46,10 +46,12 @@ def checked?(value)
false
when String
value == @checked_value
when Array
value.include?(@checked_value)
else
value.to_i == @checked_value.to_i
if value.respond_to?(:include?)
value.include?(@checked_value)
else
value.to_i == @checked_value.to_i
end
end
end
......
......@@ -400,6 +400,12 @@ def test_check_box_checked_if_object_value_includes_checked_value
'<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
check_box("post", "secret")
)
@post.secret = Set.new(['1'])
assert_dom_equal(
'<input name="post[secret]" type="hidden" value="0" /><input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
check_box("post", "secret")
)
end
def test_check_box_with_include_hidden_false
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册