##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10253:30b3e796ffe5
r15119:53710d80fc88
Show More
_form.html.erb
14 lines | 773 B | text/plain | TextLexer
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503 <%= error_messages_for 'relation' %>
<p><%= f.select :relation_type, collection_for_relation_type_select, {}, :onchange => "setPredecessorFieldsVisibility();" %>
Jean-Philippe Lang
Autocomplete issue relations on subject (#3170)....
r4388 <%= l(:label_issue) %> #<%= f.text_field :issue_to_id, :size => 10 %>
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503 <span id="predecessor_fields" style="display:none;">
<%= l(:field_delay) %>: <%= f.text_field :delay, :size => 3 %> <%= l(:label_day_plural) %>
</span>
Jean-Philippe Lang
Application layout refactored....
r736 <%= submit_tag l(:button_add) %>
Jean-Philippe Lang
New relation form Cancel link is broken with Chrome 21 (#11036)....
r10253 <%= link_to_function l(:button_cancel), '$("#new-relation-form").hide();'%>
Jean-Philippe Lang
Application layout refactored....
r736 </p>
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503
Jean-Philippe Lang
Code cleanup....
r9997 <%= javascript_tag "observeAutocompleteField('relation_issue_to_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (Setting.cross_project_issue_relations? ? 'all' : nil))}')" %>
Jean-Philippe Lang
Moved the div to a valid place....
r8446
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503 <%= javascript_tag "setPredecessorFieldsVisibility();" %>