##// END OF EJS Templates
Adds setting_new_project_issue_tab_enabled i18n string (#6204)....
Adds setting_new_project_issue_tab_enabled i18n string (#6204). git-svn-id: http://svn.redmine.org/redmine/trunk@15408 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13236:a7559e669f4f
r15026:3bdf6e995a35
Show More
_columns.html.erb
40 lines | 1.8 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">
Jean-Philippe Lang
Custom queries: buttons to move column to top and bottom (#16326)....
r12716 <input type="button" value="&#8648;" onclick="moveOptionTop(this.form.selected_columns);" /><br />
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 />
Jean-Philippe Lang
Custom queries: buttons to move column to top and bottom (#16326)....
r12716 <input type="button" value="&#8595;" onclick="moveOptionDown(this.form.selected_columns);" /><br />
<input type="button" value="&#8650;" onclick="moveOptionBottom(this.form.selected_columns);" />
Toshi MARUYAMA
replace tabs to spaces at app/views/queries/_columns.html.erb...
r7261 </td>
</tr>
Jean-Philippe Lang
Custom query columns: checkboxes replaced by two selects that let the user specify columns order....
r773 </table>
Jean-Philippe Lang
Moved select_list_move.js content to application.js....
r13236 <%= javascript_tag do %>
$(document).ready(function(){
$('.query-columns').closest('form').submit(function(){
$('#selected_columns option').prop('selected', true);
});
});
Jean-Philippe Lang
Added a checkbox on custom query form to explicitly say if the query uses default columns or not....
r772 <% end %>