diff options
author | Go MAEDA <maeda@farend.jp> | 2018-04-29 09:58:56 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-04-29 09:58:56 +0000 |
commit | c9c4a8c1535c603876c871387805ad11effacb26 (patch) | |
tree | 0bcfb1e3529f8f06fed1ee04f75ccfdb4fbb3859 /app/views/custom_fields | |
parent | b8ed894a721939e97ff5a52a2f51a67f26d5749a (diff) | |
download | redmine-c9c4a8c1535c603876c871387805ad11effacb26.tar.gz redmine-c9c4a8c1535c603876c871387805ad11effacb26.zip |
Replace check_all_links in new custom field form with toogle_checkboxes_link (#27807).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@17319 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_form.html.erb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index 94f417cfa..44a7a4b4a 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -100,7 +100,7 @@ when "IssueCustomField" %> <%= hidden_field_tag 'custom_field[role_ids][]', '' %> </fieldset> - <fieldset class="box" id="custom_field_tracker_ids"><legend><%=l(:label_tracker_plural)%></legend> + <fieldset class="box" id="custom_field_tracker_ids"><legend><%= toggle_checkboxes_link("#custom_field_tracker_ids input[type=checkbox]") %><%=l(:label_tracker_plural)%></legend> <% tracker_ids = @custom_field.tracker_ids %> <% Tracker.sorted.each do |tracker| %> <%= check_box_tag "custom_field[tracker_ids][]", @@ -112,10 +112,9 @@ when "IssueCustomField" %> </label> <% end %> <%= hidden_field_tag "custom_field[tracker_ids][]", '' %> - <p><%= check_all_links 'custom_field_tracker_ids' %></p> </fieldset> - <fieldset class="box"><legend><%= l(:label_project_plural) %></legend> + <fieldset class="box"><legend><%= toggle_checkboxes_link("#custom_field_project_ids input[type=checkbox]:enabled") %><%= l(:label_project_plural) %></legend> <p><%= f.check_box :is_for_all, :data => {:disables => '#custom_field_project_ids input'} %></p> <div id="custom_field_project_ids"> @@ -124,7 +123,6 @@ when "IssueCustomField" %> content_tag('label', check_box_tag('custom_field[project_ids][]', p.id, project_ids.include?(p.id), :id => nil) + ' ' + p) end %> <%= hidden_field_tag('custom_field[project_ids][]', '', :id => nil) %> - <p><%= check_all_links 'custom_field_project_ids' %></p> </div> </fieldset> <% end %> |