def custom_field_tag(prefix, custom_value)
cf = custom_value.custom_field
css = cf.css_classes
+ placeholder = cf.description
+ placeholder&.tr!("\n", ' ') if cf.field_format != 'text'
data = nil
if cf.full_text_formatting?
css += ' wiki-edit'
custom_field_tag_name(prefix, cf),
custom_value,
:class => css,
+ :placeholder => placeholder,
:data => data)
end
outline: none;
}
+input:placeholder-shown {
+ text-overflow: ellipsis;
+}
+
select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;}
fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;}
legend {color: #333;}
assert_select_in custom_field_tag('object', value), "textarea.text_cf.wiki-edit.cf_#{field.id}"
end
+ def test_custom_field_tag_class_should_contain_placeholder
+ field = IssueCustomField.create!(:name => 'Text', :field_format => 'string', :description => "Foo\nBar\nBaz")
+ value = CustomValue.new(:value => 'bar', :custom_field => field)
+
+ assert_select_in custom_field_tag('object', value), "input.string_cf.cf_#{field.id}[placeholder=?]", 'Foo Bar Baz'
+ end
+
def test_select_type_radio_buttons
result = select_type_radio_buttons('UserCustomField')
assert_select_in result, 'input[type="radio"]', :count => 10