Mercurial > hg > soundsoftware-site
view app/views/queries/_columns.rhtml @ 747:ae4054db4f3c feature_14
retrieving the project tags list correctly (though link is still broken - linking to the issues pageā¦)
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 08 Nov 2011 14:21:34 +0000 |
parents | cbce1fd3b1b7 |
children |
line wrap: on
line source
<table style="border-collapse: collapse; border:0;"> <tr> <td style="padding-left:0"><%= 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" %> </td> <td align="center" valign="middle"> <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><%= select_tag 'c[]', options_for_select(query.columns.collect {|column| [column.caption, column.name]}), :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %> </td> <td align="center" valign="middle"> <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 %>