##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11222:d255e98023e5
r11490:9fea2ab6d224
Show More
_columns.html.erb
34 lines | 1.5 KiB | text/plain | TextLexer
Toshi MARUYAMA
Remove some inline styling and some depreciated table cell attributes and replace them with proper class names....
r9132 <table class="query-columns">
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 <tr>
Toshi MARUYAMA
[#9489] added invisible labels for queries...
r7558 <td style="padding-left:0">
Toshi MARUYAMA
[#9489] made labels visible as this is an accessibility issue even for sighted users...
r7575 <%= label_tag "available_columns", l(:description_available_columns) %>
Toshi MARUYAMA
fix typos (#9499, #9489)...
r7586 <br />
Toshi MARUYAMA
[#9489] added invisible labels for queries...
r7558 <%= select_tag 'available_columns',
Jean-Philippe Lang
Adds helpers for query columns selection....
r11221 options_for_select(query_available_inline_columns_options(query)),
Jean-Philippe Lang
Allows double click to move columns between available/selected columns....
r7745 :multiple => true, :size => 10, :style => "width:150px",
:ondblclick => "moveOptions(this.form.available_columns, this.form.selected_columns);" %>
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 </td>
Toshi MARUYAMA
Remove some inline styling and some depreciated table cell attributes and replace them with proper class names....
r9132 <td class="buttons">
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 <input type="button" value="&#8594;"
onclick="moveOptions(this.form.available_columns, this.form.selected_columns);" /><br />
<input type="button" value="&#8592;"
onclick="moveOptions(this.form.selected_columns, this.form.available_columns);" />
</td>
Toshi MARUYAMA
[#9489] added invisible labels for queries...
r7558 <td>
Toshi MARUYAMA
[#9489] made labels visible as this is an accessibility issue even for sighted users...
r7575 <%= label_tag "selected_columns", l(:description_selected_columns) %>
Toshi MARUYAMA
fix typos (#9499, #9489)...
r7586 <br />
Jean-Philippe Lang
Adds an helper for rendering query columns selection....
r11222 <%= select_tag tag_name,
Jean-Philippe Lang
Adds helpers for query columns selection....
r11221 options_for_select(query_selected_inline_columns_options(query)),
Jean-Philippe Lang
Allows double click to move columns between available/selected columns....
r7745 :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px",
Jean-Philippe Lang
Adds an helper for rendering query columns selection....
r11222 :ondblclick => "moveOptions(this.form.selected_columns, this.form.available_columns);" %>
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 </td>
Toshi MARUYAMA
Remove some inline styling and some depreciated table cell attributes and replace them with proper class names....
r9132 <td class="buttons">
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 <input type="button" value="&#8593;" onclick="moveOptionUp(this.form.selected_columns);" /><br />
<input type="button" value="&#8595;" onclick="moveOptionDown(this.form.selected_columns);" />
</td>
</tr>
Jean-Philippe Lang
Custom query columns: checkboxes replaced by two selects that let the user specify columns order....
r773 </table>
<% content_for :header_tags do %>
<%= javascript_include_tag 'select_list_move' %>
Jean-Philippe Lang
Added a checkbox on custom query form to explicitly say if the query uses default columns or not....
r772 <% end %>