mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-31 11:37:14 +00:00
Show toolbar for full width custom fields with text formatting enabled on issues bulk edit page (#32471).
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@19691 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a14697df68
commit
92169b1124
@ -128,6 +128,10 @@ module CustomFieldsHelper
|
||||
|
||||
# Returns the custom field tag for when bulk editing objects
|
||||
def custom_field_tag_for_bulk_edit(prefix, custom_field, objects=nil, value='')
|
||||
css = custom_field.css_classes
|
||||
if custom_field.full_text_formatting?
|
||||
css += ' wiki-edit'
|
||||
end
|
||||
custom_field.format.bulk_edit_tag(
|
||||
self,
|
||||
custom_field_tag_id(prefix, custom_field),
|
||||
@ -135,7 +139,7 @@ module CustomFieldsHelper
|
||||
custom_field,
|
||||
objects,
|
||||
value,
|
||||
:class => custom_field.css_classes)
|
||||
:class => css)
|
||||
end
|
||||
|
||||
# Returns custom field value tag
|
||||
|
||||
@ -212,6 +212,7 @@
|
||||
<label><%= custom_field.name %></label>
|
||||
<%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %>
|
||||
</p>
|
||||
<%= wikitoolbar_for "issue_custom_field_values_#{custom_field.id}", preview_issue_path(:project_id => @project, :issue_id => nil) if custom_field.full_text_formatting? %>
|
||||
<% end %>
|
||||
|
||||
</fieldset>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user