1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

Add right-click context menu to gantt subjects (#10485).

Contributed by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17030 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2017-11-25 16:30:23 +00:00
parent 4b30e7a90e
commit fc93f14d64
3 changed files with 7 additions and 2 deletions

View File

@ -151,7 +151,9 @@
%>
<%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %>
<%= content_tag(:div, :class => "gantt_subjects") do %>
<%= @gantt.subjects.html_safe %>
<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%>
<%= @gantt.subjects.html_safe %>
<% end %>
<% end %>
<% end %>
</td>
@ -378,3 +380,4 @@
resizableSubjectColumn();
});
<% end %>
<%= context_menu %>

View File

@ -670,6 +670,7 @@ module Redmine
:title => assigned_string).to_s.html_safe
end
s << view.link_to_issue(issue).html_safe
s << view.content_tag(:input, nil, :type => 'checkbox', :name => 'ids[]', :value => issue.id, :style => 'display:none;', :class => 'toggle-selection')
view.content_tag(:span, s, :class => css_classes).html_safe
when Version
version = object
@ -704,7 +705,7 @@ module Redmine
case object
when Issue
tag_options[:id] = "issue-#{object.id}"
tag_options[:class] = "issue-subject"
tag_options[:class] = "issue-subject hascontextmenu"
tag_options[:title] = object.subject
when Version
tag_options[:id] = "version-#{object.id}"

View File

@ -1164,6 +1164,7 @@ div.wiki img {vertical-align:middle; max-width:100%;}
.gantt_subjects { font-size: 0.8em; }
.gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; }
.gantt_subjects div.issue-subject:hover { background-color:#ffffdd; }
.gantt_subjects .issue-subject img.icon-gravatar {
margin: 2px 5px 0px 2px;