mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00: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:
parent
96baa905bf
commit
cf4af2c5db
@ -498,6 +498,9 @@ module Redmine
|
|||||||
tag_id = nil
|
tag_id = nil
|
||||||
s << view.content_tag('label', tag + ' ' + label)
|
s << view.content_tag('label', tag + ' ' + label)
|
||||||
end
|
end
|
||||||
|
if custom_value.custom_field.multiple?
|
||||||
|
s << view.hidden_field_tag(tag_name, '')
|
||||||
|
end
|
||||||
css = "#{options[:class]} check_box_group"
|
css = "#{options[:class]} check_box_group"
|
||||||
view.content_tag('span', s, options.merge(:class => css))
|
view.content_tag('span', s, options.merge(:class => css))
|
||||||
end
|
end
|
||||||
|
|||||||
@ -116,6 +116,18 @@ class Redmine::ListFieldFormatTest < ActionView::TestCase
|
|||||||
end
|
end
|
||||||
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
|
def test_field_with_url_pattern_should_link_value
|
||||||
field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%')
|
field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%')
|
||||||
formatted = field.format.formatted_value(self, field, 'foo', Issue.new, true)
|
formatted = field.format.formatted_value(self, field, 'foo', Issue.new, true)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user