Sha256: 29acb9384f300bde9a37e4a670344017eff45dc062f7ff8ea4e51aa327712156
Contents?: true
Size: 1.97 KB
Versions: 5
Compression:
Stored size: 1.97 KB
Contents
<% if @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 $('#tr_<%= @resource_options[:item_name] %>_<%= @r_object.id %>').replaceWith("<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/row", locals: locals)) %>"); $("#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
5 entries across 5 versions & 1 rubygems