diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-08-05 17:19:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-08-05 17:19:49 +0000 |
commit | bd4fba08e5bec539a746e9be422b9c2baab51406 (patch) | |
tree | a0580d885db40f30732af0222c3c3a145dd7388e /app/views | |
parent | fd1b0607055909142e75f437a326273c3bd370e5 (diff) | |
download | redmine-bd4fba08e5bec539a746e9be422b9c2baab51406.tar.gz redmine-bd4fba08e5bec539a746e9be422b9c2baab51406.zip |
One click filter in search view (#2865).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12080 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/search/index.html.erb | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb index d4d671aa9..2e2d91fb1 100644 --- a/app/views/search/index.html.erb +++ b/app/views/search/index.html.erb @@ -1,7 +1,7 @@ <h2><%= l(:label_search) %></h2> <div class="box"> -<%= form_tag({}, :method => :get) do %> +<%= form_tag({}, :method => :get, :id => 'search-form') do %> <%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %> <p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input' %> <%= javascript_tag "$('#search-input').focus()" %> @@ -11,13 +11,14 @@ <%= hidden_field_tag 'titles_only', '', :id => nil %> <label><%= check_box_tag 'titles_only', 1, @titles_only %> <%= l(:label_search_titles_only) %></label> </p> -<p> + +<p id="search-types"> <% @object_types.each do |t| %> -<label><%= check_box_tag t, 1, @scope.include?(t) %> <%= type_label(t) %></label> +<label><%= check_box_tag t, 1, @scope.include?(t) %> <%= link_to type_label(t), "#" %></label> <% end %> </p> -<p><%= submit_tag l(:button_submit), :name => 'submit' %></p> +<p><%= submit_tag l(:button_submit) %></p> <% end %> </div> @@ -50,3 +51,14 @@ </center></p> <% html_title(l(:label_search)) -%> + +<%= javascript_tag do %> +$("#search-types a").click(function(e){ + e.preventDefault(); + $("#search-types input[type=checkbox]").attr('checked', false); + $(this).siblings("input[type=checkbox]").attr('checked', true); + if ($("#search-input").val() != "") { + $("#search-form").submit(); + } +}); +<% end %> |