Sha256: ad348af5c75c3c2cb7a44869241dba914c5daa523d49481c04297f5157410cab
Contents?: true
Size: 1.56 KB
Versions: 14
Compression:
Stored size: 1.56 KB
Contents
<% item_id = "#div_#{@resource_options[:item_name]}_#{@r_object.id}" show_id = "#div_#{@resource_options[:item_name]}_show" %> <% if @r_object && @r_object.errors.blank? %> <% locals = {@resource_options[:item_name].to_sym => @r_object, i: -1} if @row_partial_locals && @row_partial_locals.is_a?(Hash) && !@row_partial_locals.empty? locals.merge!(@row_partial_locals) end %> // Updating the edited row and highlighting it $("<%= item_id %>").replaceWith("<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/row", locals: locals)) %>"); $("<%= item_id %>").css("background-color", "#fffddd"); <% if @resource_options[:show_modal_after_update] %> // Refresh the modal content if it is open $("<%= show_id %>").replaceWith("<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/show")) %>") <% else %> // Closing the modal if it is opened <% if @resource_options[:form_model_size] == :generic %> closeGenericModal(); <% elsif @resource_options[:form_model_size] == :large %> closeLargeModal(); <% end %> <% end %> // Closing the modal showAndHideModals(); // Showing Growl Like Message notifySuccess("<%= @notification[:title] %>", "<%= @notification[:message] %>"); <% else %> // Updating the row which got errored and highlighting it $("<%= item_id %>").css("background-color", "#ffefef"); // Showing Growl Like Message notifyError("<%= escape_javascript(@notification[:title]) %>", "<%= escape_javascript(raw(@notification[:message])) %>"); <% end %>
Version data entries
14 entries across 14 versions & 1 rubygems