Sha256: 5c7762922208e197289d7cc06dbbb883a71bb7fcb6d328223dad32e6c33d14e0
Contents?: true
Size: 1.8 KB
Versions: 20
Compression:
Stored size: 1.8 KB
Contents
<% if @r_object.errors.blank? %> // Updating the edited row and highlighting it $('#tr_<%= @resource_options[:item_name] %>_<%= @r_object.id %>').replaceWith("<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/row", locals: { @resource_options[:item_name].to_sym => @r_object, i: -1})) %>"); $("#tr_<%= @resource_options[:item_name] %>_<%= @r_object.id %>").css("background-color", "#fffddd"); <% if @resource_options[:show_modal_after_update] %> // Showing the saved data in the modal var heading = "<%= raw @r_object.try(:display_name) %>"; var bodyContent = "<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/show")) %>"; showGenericModal(heading, bodyContent, false); <% else %> // Closing the modal if it is opened closeGenericModal(); <% end %> // Showing Growl Like Message notifySuccess("<%= @notification[:title] %>", "<%= @notification[:message] %>"); <% else %> // Reload the form with errors var heading = "Edit '<%= raw @r_object.try(:display_name) %>'"; var bodyContent = "<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/form")) %>"; showGenericModal(heading, bodyContent, true); // Show Main Error Message on the form <% error_message = content_tag(:div, I18n.t('errors.errors_highlighted'), class: "alert alert-danger mt-20") %> $("#<%= @resource_options[:item_name] %>_form_error").html("<%= escape_javascript(error_message) %>"); // Initialize WYSIHTML Editor $(".wysihtml5").wysihtml5( {"stylesheets": '/assets/wysiwyg-color.css'} ); // Initialize WYSIHTML Editor $('input.kuppayam-tagsinput').tagsinput(); // Showing Growl Like Message notifyError("<%= escape_javascript(@notification[:title]) %>", "<%= escape_javascript(raw(@notification[:message])) %>"); <% end %>
Version data entries
20 entries across 20 versions & 1 rubygems