#823 context menu bug fixing
This commit is contained in:
parent
00467bbdb0
commit
dc9ce6c312
@ -89,12 +89,12 @@
|
||||
<% if !@system_folder %>
|
||||
<div id="dmsf_buttons" class="dmsf_controls" style="float: left">
|
||||
<%= submit_tag(l(:button_download), :title => l(:title_download_checked), :name => 'download_entries',
|
||||
:class => 'toggle-selection') if @file_view_allowed %>
|
||||
:class => 'toggle-selection') if @file_view_allowed %>
|
||||
<%= submit_tag(l(:field_mail), :title => l(:title_send_checked_by_email), :name => 'email_entries',
|
||||
:class => 'toggle-selection') if (@file_view_allowed && User.current.allowed_to?(:email_documents, @project)) %>
|
||||
:class => 'toggle-selection') if (@file_view_allowed && User.current.allowed_to?(:email_documents, @project)) %>
|
||||
<% if @file_delete_allowed %>
|
||||
<%= submit_tag(l(:button_delete), :title => l(:title_delete_checked), :name => 'delete_entries',
|
||||
:class => 'toggle-selection') if @file_delete_allowed %>
|
||||
<%= submit_tag(l(:button_delete), :title => l(:title_delete_checked), :name => 'delete_entries',
|
||||
:class => 'toggle-selection', :data => { :confirm => l(:text_are_you_sure) }) if @file_delete_allowed %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
@ -124,19 +124,6 @@
|
||||
|
||||
<%= context_menu %>
|
||||
|
||||
<%= late_javascript_tag do %>
|
||||
$('#entries_delete_button').click(function () {
|
||||
if (window.confirm("<%= l(:text_are_you_sure) %>")) {
|
||||
$('#entries_form').attr('action', "<%= delete_entries_path(:id => @project, :folder_id => @folder) %>");
|
||||
$('#entries_form').submit();
|
||||
}
|
||||
});
|
||||
$('.list_cf').change(function() {
|
||||
$('#entries_form').attr('action', "<%= tag_changed_path(:id => @project, :folder_id => @folder) %>");
|
||||
$('#entries_form').submit();
|
||||
});
|
||||
<% end %>
|
||||
|
||||
<% content_for :header_tags do %>
|
||||
<%= stylesheet_link_tag 'jquery.dataTables/datatables.min.css', :plugin => 'redmine_dmsf' %>
|
||||
<%= javascript_include_tag 'jquery.dataTables/datatables.min.js', :plugin => 'redmine_dmsf' %>
|
||||
@ -153,68 +140,74 @@
|
||||
<% modified = DmsfFolder.get_column_position('modified') %>
|
||||
|
||||
<%= late_javascript_tag do %>
|
||||
EASY.schedule.main(function() {
|
||||
$("#browser").dataTable({
|
||||
orderClasses: false,
|
||||
responsive: {
|
||||
details: false
|
||||
},
|
||||
language: {
|
||||
url: "<%= plugin_asset_path(:redmine_dmsf, 'javascripts', json_url) %>"
|
||||
},
|
||||
autoWidth: false,
|
||||
paginate: false,
|
||||
<% if title %>
|
||||
order: [[<%= title %>, "asc"]],
|
||||
$("#browser").dataTable({
|
||||
orderClasses: false,
|
||||
responsive: {
|
||||
details: false
|
||||
},
|
||||
language: {
|
||||
url: "<%= plugin_asset_path(:redmine_dmsf, 'javascripts', json_url) %>"
|
||||
},
|
||||
autoWidth: false,
|
||||
paginate: false,
|
||||
<% if title %>
|
||||
order: [[<%= title %>, "asc"]],
|
||||
<% end %>
|
||||
sortingFixed: [[ <%= position %>, "asc"]],
|
||||
columnDefs: [
|
||||
{ responsivePriority: 1, targets: <%= title %> },
|
||||
{ responsivePriority: 2, targets: <%= commands %> },
|
||||
{ searchable: false, targets: [0, <%= commands %>, <%= position %>, <%= size_calculated %>, <%= modified_calculated %>, <%= version_calculated %>] },
|
||||
{ sortable: false, targets: [0, <%= commands %>] }
|
||||
<% if size %>
|
||||
,{ iDataSort: <%= size_calculated %>, targets: [ <%= size %> ] }
|
||||
<% end %>
|
||||
<% if modified %>
|
||||
,{ iDataSort: <%= modified_calculated %>, targets: [ <%= modified %> ] }
|
||||
<% end %>
|
||||
<% if version %>
|
||||
,{ iDataSort: <%= version_calculated %>, targets: [ <%= version %> ] }
|
||||
<% end %>
|
||||
],
|
||||
"fnInitComplete": function() {
|
||||
var browserFilter = $("#browser_filter");
|
||||
$("#dmsf_buttons").insertBefore(browserFilter);
|
||||
$("#dmsf_tag").insertBefore(browserFilter);
|
||||
},
|
||||
"fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
|
||||
<% if @tree_view %>
|
||||
<% if @folder %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{@folder.deep_folder_count} #{l(:label_number_of_documents)}: #{@folder.deep_file_count}" %>";
|
||||
<% else %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{DmsfFolder.visible.where(:project_id => @project.id).count + DmsfLink.visible.where(:project_id => @project.id, :target_type => 'DmsfFolder').count}, #{l(:label_number_of_documents)}: #{DmsfFile.visible.where(:project_id => @project.id).count + DmsfLink.visible.where(:project_id => @project.id, :target_type => ['DmsfFile', 'DmsfUrl']).count}" %>";
|
||||
<% end %>
|
||||
sortingFixed: [[ <%= position %>, "asc"]],
|
||||
columnDefs: [
|
||||
{ responsivePriority: 1, targets: <%= title %> },
|
||||
{ responsivePriority: 2, targets: <%= commands %> },
|
||||
{ searchable: false, targets: [0, <%= commands %>, <%= position %>, <%= size_calculated %>, <%= modified_calculated %>, <%= version_calculated %>] },
|
||||
{ sortable: false, targets: [0, <%= commands %>] }
|
||||
<% if size %>
|
||||
,{ iDataSort: <%= size_calculated %>, targets: [ <%= size %> ] }
|
||||
<% end %>
|
||||
<% if modified %>
|
||||
,{ iDataSort: <%= modified_calculated %>, targets: [ <%= modified %> ] }
|
||||
<% end %>
|
||||
<% if version %>
|
||||
,{ iDataSort: <%= version_calculated %>, targets: [ <%= version %> ] }
|
||||
<% end %>
|
||||
],
|
||||
"fnInitComplete": function() {
|
||||
$("#dmsf_buttons").prependTo($("#browser_wrapper div.fg-toolbar")[0]);
|
||||
$("#dmsf_tag").prependTo($("#browser_wrapper div.fg-toolbar")[0]);
|
||||
},
|
||||
"fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
|
||||
<% if @tree_view %>
|
||||
<% if @folder %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{@folder.deep_folder_count} #{l(:label_number_of_documents)}: #{@folder.deep_file_count}" %>";
|
||||
<% else %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{DmsfFolder.visible.where(:project_id => @project.id).count + DmsfLink.visible.where(:project_id => @project.id, :target_type => 'DmsfFolder').count}, #{l(:label_number_of_documents)}: #{DmsfFile.visible.where(:project_id => @project.id).count + DmsfLink.visible.where(:project_id => @project.id, :target_type => ['DmsfFile', 'DmsfUrl']).count}" %>";
|
||||
<% end %>
|
||||
<% else %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{@subfolders.count + @dir_links.count}, #{l(:label_number_of_documents)}: #{@files.count + @file_links.count + @url_links.count}" %>";
|
||||
<% end %>
|
||||
}
|
||||
});
|
||||
<% else %>
|
||||
return "<%= "#{l(:label_number_of_folders)}: #{@subfolders.count + @dir_links.count}, #{l(:label_number_of_documents)}: #{@files.count + @file_links.count + @url_links.count}" %>";
|
||||
<% end %>
|
||||
}
|
||||
});
|
||||
|
||||
$("[data-downloadurl]").each(function() {
|
||||
var url = this.getAttribute("data-downloadurl");
|
||||
if (this.addEventListener) {
|
||||
this.addEventListener("dragstart", function(e) {
|
||||
if (e.dataTransfer) {
|
||||
e.dataTransfer.setData("DownloadURL", url);
|
||||
}
|
||||
},false);
|
||||
}
|
||||
});
|
||||
$("[data-downloadurl]").each(function() {
|
||||
var url = this.getAttribute("data-downloadurl");
|
||||
if (this.addEventListener) {
|
||||
this.addEventListener("dragstart", function(e) {
|
||||
if (e.dataTransfer) {
|
||||
e.dataTransfer.setData("DownloadURL", url);
|
||||
}
|
||||
},false);
|
||||
}
|
||||
});
|
||||
|
||||
$("#entries_form").submit(function () {
|
||||
$(this).removeAttr("data-submitted");
|
||||
});
|
||||
});
|
||||
var entriesForm = $('#entries_form');
|
||||
|
||||
entriesForm.submit(function () {
|
||||
$(this).removeAttr("data-submitted");
|
||||
});
|
||||
|
||||
$('.list_cf').change(function() {
|
||||
entriesForm.attr('action', "<%= tag_changed_path(:id => @project, :folder_id => @folder) %>");
|
||||
entriesForm.submit();
|
||||
});
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
|
||||
@ -35,13 +35,13 @@
|
||||
<%= form_tag(entries_operations_dmsf_path(:id => @project, :folder_id => @folder), :method => :post,
|
||||
:class => 'dmsf_entries', :id => 'entries_form', :data => {:cm_url => dmsf_trash_context_menu_path}) do %>
|
||||
<%= hidden_field_tag('action') %>
|
||||
<div class="dmsf_controls" style="float: left">
|
||||
<div id="dmsf_buttons" class="dmsf_controls" style="float: left">
|
||||
<% if @file_manipulation_allowed && @folder_manipulation_allowed %>
|
||||
<%= submit_tag(l(:title_restore), :title => l(:title_restore_checked), :name => 'restore_entries',
|
||||
:class => 'toggle-selection') %>
|
||||
<%= submit_tag l(:title_restore), :title => l(:title_restore_checked), :name => 'restore_entries',
|
||||
:class => 'toggle-selection' %>
|
||||
<% if @file_delete_allowed%>
|
||||
<%= submit_tag(l(:button_delete), :title => l(:title_delete_checked), :name => 'destroy_entries',
|
||||
:class => 'toggle-selection') %>
|
||||
<%= submit_tag l(:button_delete), :title => l(:title_delete_checked), :name => 'destroy_entries',
|
||||
:class => 'toggle-selection', :data => { :confirm => l(:text_are_you_sure) } %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
@ -153,13 +153,13 @@
|
||||
<% end %>
|
||||
<% @url_links.each do |link| %>
|
||||
<tr class="<%= classes %>">
|
||||
<%= render(:partial => 'url_trash', :locals => {
|
||||
:project => link.target_project,
|
||||
:file => link.target_file,
|
||||
:link => link,
|
||||
:id => link.id,
|
||||
:name => 'url-link',
|
||||
:title => link.name }) %>
|
||||
<%= render(:partial => 'url_trash', :locals => {
|
||||
:project => link.target_project,
|
||||
:file => link.target_file,
|
||||
:link => link,
|
||||
:id => link.id,
|
||||
:name => 'url-link',
|
||||
:title => link.name }) %>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
@ -168,19 +168,6 @@
|
||||
|
||||
<%= context_menu %>
|
||||
|
||||
<%= late_javascript_tag do %>
|
||||
$('#entries_delete_button').click(function() {
|
||||
if(window.confirm("<%= l(:text_are_you_sure) %>")) {
|
||||
$('#entries_form').attr('action', "<%= delete_entries_path(:id => @project, :folder_id => @folder) %>");
|
||||
$('#entries_form').submit();
|
||||
}
|
||||
});
|
||||
$('.list_cf').change(function() {
|
||||
$('#entries_form').attr('action', "<%= tag_changed_path(:id => @project, :folder_id => @folder) %>");
|
||||
$('#entries_form').submit();
|
||||
});
|
||||
<% end %>
|
||||
|
||||
<% content_for :header_tags do %>
|
||||
<%= stylesheet_link_tag 'jquery.dataTables/datatables.min.css', :plugin => 'redmine_dmsf' %>
|
||||
<%= javascript_include_tag 'jquery.dataTables/datatables.min.js', :plugin => 'redmine_dmsf' %>
|
||||
@ -197,47 +184,45 @@
|
||||
<% modified = DmsfFolder.get_column_position('modified') %>
|
||||
|
||||
<%= late_javascript_tag do %>
|
||||
EASY.schedule.main(function() {
|
||||
$('#browser').dataTable({
|
||||
orderClasses: false,
|
||||
responsive: {
|
||||
details: false
|
||||
},
|
||||
language: {
|
||||
url: "<%= plugin_asset_path(:redmine_dmsf, 'javascripts', json_url) %>"
|
||||
},
|
||||
autoWidth: false,
|
||||
paginate: false,
|
||||
<% if title %>
|
||||
order: [[<%= title %>, "asc"]],
|
||||
<% end %>
|
||||
sortingFixed: [[ <%= position %>, "asc"]],
|
||||
columnDefs: [
|
||||
{ responsivePriority: 1, targets: <%= title %> },
|
||||
{ responsivePriority: 2, targets: <%= commands %> },
|
||||
{ searchable: false, targets: [0, <%= commands %>, <%= position %>, <%= size_calculated %>, <%= modified_calculated %>, <%= version_calculated %>] },
|
||||
{ sortable: false, targets: [0, <%= commands %>] }
|
||||
<% if size %>
|
||||
,{ iDataSort: <%= size_calculated %>, targets: [ <%= size %> ] }
|
||||
<% end %>
|
||||
<% if modified %>
|
||||
,{ iDataSort: <%= modified_calculated %>, targets: [ <%= modified %> ] }
|
||||
<% end %>
|
||||
<% if version %>
|
||||
,{ iDataSort: <%= version_calculated %>, targets: [ <%= version %> ] }
|
||||
<% end %>
|
||||
],
|
||||
"fnInitComplete": function() {
|
||||
$("div.dmsf_controls").prependTo($("#browser_wrapper div.fg-toolbar")[0]);
|
||||
},
|
||||
"fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
|
||||
return "<%= l(:label_number_of_folders)%>: <%= @subfolders.count + @dir_links.count %>, <%= l(:label_number_of_documents)%>: <%= @files.count + @file_links.count + @url_links.count %>";
|
||||
}
|
||||
});
|
||||
$('#browser').dataTable({
|
||||
orderClasses: false,
|
||||
responsive: {
|
||||
details: false
|
||||
},
|
||||
language: {
|
||||
url: "<%= plugin_asset_path(:redmine_dmsf, 'javascripts', json_url) %>"
|
||||
},
|
||||
autoWidth: false,
|
||||
paginate: false,
|
||||
<% if title %>
|
||||
order: [[<%= title %>, "asc"]],
|
||||
<% end %>
|
||||
sortingFixed: [[ <%= position %>, "asc"]],
|
||||
columnDefs: [
|
||||
{ responsivePriority: 1, targets: <%= title %> },
|
||||
{ responsivePriority: 2, targets: <%= commands %> },
|
||||
{ searchable: false, targets: [0, <%= commands %>, <%= position %>, <%= size_calculated %>, <%= modified_calculated %>, <%= version_calculated %>] },
|
||||
{ sortable: false, targets: [0, <%= commands %>] }
|
||||
<% if size %>
|
||||
,{ iDataSort: <%= size_calculated %>, targets: [ <%= size %> ] }
|
||||
<% end %>
|
||||
<% if modified %>
|
||||
,{ iDataSort: <%= modified_calculated %>, targets: [ <%= modified %> ] }
|
||||
<% end %>
|
||||
<% if version %>
|
||||
,{ iDataSort: <%= version_calculated %>, targets: [ <%= version %> ] }
|
||||
<% end %>
|
||||
],
|
||||
"fnInitComplete": function() {
|
||||
$("#dmsf_buttons").insertBefore($("#browser_filter"));
|
||||
},
|
||||
"fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
|
||||
return "<%= l(:label_number_of_folders)%>: <%= @subfolders.count + @dir_links.count %>, <%= l(:label_number_of_documents)%>: <%= @files.count + @file_links.count + @url_links.count %>";
|
||||
}
|
||||
});
|
||||
|
||||
$("#entries_form").submit(function () {
|
||||
$(this).removeAttr("data-submitted");
|
||||
});
|
||||
$("#entries_form").submit(function () {
|
||||
$(this).removeAttr("data-submitted");
|
||||
});
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
@ -34,7 +34,7 @@
|
||||
<li>
|
||||
<%= context_menu_link l(:button_delete), entries_operations_dmsf_path(:id => @project, :folder_id => @folder,
|
||||
:ids => params[:ids], :delete_entries => true), :method => :post, :class => 'icon-del',
|
||||
:disabled => @disabled %>
|
||||
:data => { :confirm => l(:text_are_you_sure) }, :id => 'dmsf-cm-delete', :disabled => @disabled %>
|
||||
</li>
|
||||
<% if @file %>
|
||||
<li>
|
||||
@ -54,4 +54,8 @@
|
||||
$('#dmsf-cm-download').click(function (event) {
|
||||
contextMenuHide();
|
||||
});
|
||||
|
||||
$('#dmsf-cm-delete').click(function (event) {
|
||||
contextMenuHide();
|
||||
});
|
||||
<% end %>
|
||||
|
||||
@ -23,10 +23,17 @@
|
||||
<ul>
|
||||
<li>
|
||||
<%= context_menu_link l(:button_delete), entries_operations_dmsf_path(:id => @project, :folder_id => @folder,
|
||||
:ids => params[:ids], :destroy_entries => true), :method => :post, :class => 'icon-del' %>
|
||||
:ids => params[:ids], :destroy_entries => true), :method => :post, :class => 'icon-del', :id => 'dmsf-cm-delete',
|
||||
:data => { :confirm => l(:text_are_you_sure) } %>
|
||||
</li>
|
||||
<li>
|
||||
<%= context_menu_link l(:title_restore), entries_operations_dmsf_path(:id => @project, :folder_id => @folder,
|
||||
:ids => params[:ids], :restore_entries => true), :method => :post, :class => 'icon-cancel' %>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<%= late_javascript_tag do %>
|
||||
$('#dmsf-cm-delete').click(function (event) {
|
||||
contextMenuHide();
|
||||
});
|
||||
<% end %>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user