mirror of
https://github.com/redmine/redmine.git
synced 2026-07-08 12:32:31 +02:00
Fixed: unable to clear value for list custom field with multiple values and checkboxes style (#16798).
git-svn-id: http://svn.redmine.org/redmine/trunk@13167 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -498,6 +498,9 @@ module Redmine
|
||||
tag_id = nil
|
||||
s << view.content_tag('label', tag + ' ' + label)
|
||||
end
|
||||
if custom_value.custom_field.multiple?
|
||||
s << view.hidden_field_tag(tag_name, '')
|
||||
end
|
||||
css = "#{options[:class]} check_box_group"
|
||||
view.content_tag('span', s, options.merge(:class => css))
|
||||
end
|
||||
|
||||
@@ -116,6 +116,18 @@ class Redmine::ListFieldFormatTest < ActionView::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
def test_edit_tag_with_check_box_style_and_multiple_values_should_contain_hidden_field_to_clear_value
|
||||
field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false,
|
||||
:edit_tag_style => 'check_box', :multiple => true)
|
||||
value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new)
|
||||
|
||||
tag = field.format.edit_tag(self, 'id', 'name', value)
|
||||
assert_select_in tag, 'span' do
|
||||
assert_select 'input[type=checkbox]', 2
|
||||
assert_select 'input[type=hidden]', 1
|
||||
end
|
||||
end
|
||||
|
||||
def test_field_with_url_pattern_should_link_value
|
||||
field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%')
|
||||
formatted = field.format.formatted_value(self, field, 'foo', Issue.new, true)
|
||||
|
||||
Reference in New Issue
Block a user