Mercurial > hg > soundsoftware-site
view app/views/queries/_columns.html.erb @ 1313:17f075c7fd41 redmine-2.2-integration
toggles bibtex.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 18 Jun 2013 14:59:04 +0100 |
parents | 433d4f72a19b |
children | 622f24f53b42 |
line wrap: on
line source
<table class="query-columns"> <tr> <td style="padding-left:0"> <%= label_tag "available_columns", l(:description_available_columns) %> <br /> <%= select_tag 'available_columns', options_for_select((query.available_inline_columns - query.columns).collect {|column| [column.caption, column.name]}), :multiple => true, :size => 10, :style => "width:150px", :ondblclick => "moveOptions(this.form.available_columns, this.form.selected_columns);" %> </td> <td class="buttons"> <input type="button" value="→" onclick="moveOptions(this.form.available_columns, this.form.selected_columns);" /><br /> <input type="button" value="←" onclick="moveOptions(this.form.selected_columns, this.form.available_columns);" /> </td> <td> <%= label_tag "selected_columns", l(:description_selected_columns) %> <br /> <%= select_tag((defined?(tag_name) ? tag_name : 'c[]'), options_for_select(query.inline_columns.collect {|column| [column.caption, column.name]}), :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px", :ondblclick => "moveOptions(this.form.selected_columns, this.form.available_columns);") %> </td> <td class="buttons"> <input type="button" value="↑" onclick="moveOptionUp(this.form.selected_columns);" /><br /> <input type="button" value="↓" onclick="moveOptionDown(this.form.selected_columns);" /> </td> </tr> </table> <% content_for :header_tags do %> <%= javascript_include_tag 'select_list_move' %> <% end %>