1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-22 16:31:12 +00:00

Parent task subject column in gantt is not fully displayed when widened (#33220).

Patch by Yuichi HARADA.


git-svn-id: http://svn.redmine.org/redmine/trunk@19756 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2020-05-08 03:44:33 +00:00
parent d4414571c1
commit dc20ffcfae

View File

@ -177,14 +177,17 @@
<% end %> <% end %>
<% end %> <% end %>
</td> </td>
<% @query.columns.each do |column| %> <%
<% next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name) %> @query.columns.each do |column|
<td class="gantt_<%= column.name %>_column gantt_selected_column <%= 'last_gantt_selected_column' if @query.columns.last == column %>" id="<%= column.name %>"> next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name)
column_name = column.name.to_s.tr('.', '_')
%>
<td class="gantt_<%= column_name %>_column gantt_selected_column <%= 'last_gantt_selected_column' if @query.columns.last == column %>" id="<%= column_name %>">
<% <%
style = "position: relative;" style = "position: relative;"
style += "height: #{t_height + 24}px;" style += "height: #{t_height + 24}px;"
%> %>
<%= content_tag(:div, :style => style, :class => "gantt_#{column.name}_container gantt_selected_column_container") do %> <%= content_tag(:div, :style => style, :class => "gantt_#{column_name}_container gantt_selected_column_container") do %>
<% <%
style = "height: #{t_height}px;" style = "height: #{t_height}px;"
style += 'overflow: hidden;' style += 'overflow: hidden;'
@ -195,7 +198,7 @@
style += 'background: #eee;' style += 'background: #eee;'
%> %>
<%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %> <%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %>
<%= content_tag(:div, :class => "gantt_#{column.name} gantt_selected_column_content") do %> <%= content_tag(:div, :class => "gantt_#{column_name} gantt_selected_column_content") do %>
<%= @gantt.selected_column_content({:column => column, :top => headers_height + 8, :zoom => zoom, :g_width => g_width}).html_safe %> <%= @gantt.selected_column_content({:column => column, :top => headers_height + 8, :zoom => zoom, :g_width => g_width}).html_safe %>
<% end %> <% end %>
<% end %> <% end %>