##// END OF EJS Templates
fix typos (#9499, #9489)...
Toshi MARUYAMA -
r7586:23fe2be24691
parent child
Show More
@@ -2,7 +2,7
2 <tr>
2 <tr>
3 <td style="padding-left:0">
3 <td style="padding-left:0">
4 <%= label_tag "available_columns", l(:description_available_columns) %>
4 <%= label_tag "available_columns", l(:description_available_columns) %>
5 <br \>
5 <br />
6 <%= select_tag 'available_columns',
6 <%= select_tag 'available_columns',
7 options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
7 options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}),
8 :multiple => true, :size => 10, :style => "width:150px" %>
8 :multiple => true, :size => 10, :style => "width:150px" %>
@@ -15,7 +15,7
15 </td>
15 </td>
16 <td>
16 <td>
17 <%= label_tag "selected_columns", l(:description_selected_columns) %>
17 <%= label_tag "selected_columns", l(:description_selected_columns) %>
18 <br \>
18 <br />
19 <%= select_tag 'c[]',
19 <%= select_tag 'c[]',
20 options_for_select(query.columns.collect {|column| [column.caption, column.name]}),
20 options_for_select(query.columns.collect {|column| [column.caption, column.name]}),
21 :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %>
21 :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %>
General Comments 0
You need to be logged in to leave comments. Login now