redmine_milestones icon indicating copy to clipboard operation
redmine_milestones copied to clipboard

Gantta chart filter options not avalible

Open johnp2686 opened this issue 10 years ago • 2 comments

Hello, We used redmine milestone plugin the gantta chart page we not able to see filter options

johnp2686 avatar May 30 '14 09:05 johnp2686

I fixed issues they missed syntax code <% form_tag({:controller => 'gantts', :action => 'show', :project_id => @project, :month => params[:month], :year => params[:year], :months => params[:months]}, :method => :get, :id => 'query_form') do %>

but correct code is

<%= form_tag({:controller => 'gantts', :action => 'show', :project_id => @project, :month => params[:month], :year => params[:year], :months => params[:months]}, :method => :get, :id => 'query_form') do %>

johnp2686 avatar Jun 06 '14 09:06 johnp2686

Please note that you also need to change this:

<%= link_to_function l(:button_apply), '$("#query_form").submit()', :class => 'icon icon-checked' %>

It was missing the # in query_form.

jpoa avatar Nov 24 '14 12:11 jpoa