To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / queries / _columns.html.erb @ 1591:63650ae64bf2
History | View | Annotate | Download (1.72 KB)
| 1 |
<table class="query-columns"> |
|---|---|
| 2 |
<tr>
|
| 3 |
<td style="padding-left:0"> |
| 4 |
<%= label_tag "available_columns", l(:description_available_columns) %>
|
| 5 |
<br /> |
| 6 |
<%= select_tag 'available_columns',
|
| 7 |
options_for_select(query_available_inline_columns_options(query)),
|
| 8 |
:multiple => true, :size => 10, :style => "width:150px",
|
| 9 |
:ondblclick => "moveOptions(this.form.available_columns, this.form.selected_columns);" %>
|
| 10 |
</td>
|
| 11 |
<td class="buttons"> |
| 12 |
<input type="button" value="→" |
| 13 |
onclick="moveOptions(this.form.available_columns, this.form.selected_columns);" /><br /> |
| 14 |
<input type="button" value="←" |
| 15 |
onclick="moveOptions(this.form.selected_columns, this.form.available_columns);" /> |
| 16 |
</td>
|
| 17 |
<td>
|
| 18 |
<%= label_tag "selected_columns", l(:description_selected_columns) %>
|
| 19 |
<br /> |
| 20 |
<%= select_tag tag_name,
|
| 21 |
options_for_select(query_selected_inline_columns_options(query)),
|
| 22 |
:id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px",
|
| 23 |
:ondblclick => "moveOptions(this.form.selected_columns, this.form.available_columns);" %>
|
| 24 |
</td>
|
| 25 |
<td class="buttons"> |
| 26 |
<input type="button" value="⇈" onclick="moveOptionTop(this.form.selected_columns);" /><br /> |
| 27 |
<input type="button" value="↑" onclick="moveOptionUp(this.form.selected_columns);" /><br /> |
| 28 |
<input type="button" value="↓" onclick="moveOptionDown(this.form.selected_columns);" /><br /> |
| 29 |
<input type="button" value="⇊" onclick="moveOptionBottom(this.form.selected_columns);" /> |
| 30 |
</td>
|
| 31 |
</tr>
|
| 32 |
</table>
|
| 33 |
|
| 34 |
<% content_for :header_tags do %>
|
| 35 |
<%= javascript_include_tag 'select_list_move' %>
|
| 36 |
<% end %>
|