]> source.dussan.org Git - redmine.git/commitdiff
Allows double click to move columns between available/selected columns.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Nov 2011 10:07:11 +0000 (10:07 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Nov 2011 10:07:11 +0000 (10:07 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7865 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/queries/_columns.html.erb

index eb8511ae01b72a44c19315bf5ab9db0837ea84b7..a996aa34c5ecdf76e8ea0949620e89bab3b5d487 100644 (file)
@@ -5,7 +5,8 @@
       <br />
       <%= select_tag 'available_columns',
               options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
-              :multiple => true, :size => 10, :style => "width:150px" %>
+              :multiple => true, :size => 10, :style => "width:150px",
+              :ondblclick => "moveOptions(this.form.available_columns, this.form.selected_columns);" %>
     </td>
     <td align="center" valign="middle">
       <input type="button" value="&#8594;"
@@ -18,7 +19,8 @@
       <br />
       <%= select_tag 'c[]',
               options_for_select(query.columns.collect {|column| [column.caption, column.name]}),
-              :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %>
+              :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px",
+              :ondblclick => "moveOptions(this.form.selected_columns, this.form.available_columns);" %>
     </td>
     <td align="center" valign="middle">
       <input type="button" value="&#8593;" onclick="moveOptionUp(this.form.selected_columns);" /><br />