Sha256: 163f8384a57e624c49955696cdb6a9b93577cac378a6ca3c49c2890cfb259037

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

<% if @r_object && @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] %>
  // Refresh the modal content if it is open
	$("#div_<%= @resource_options[:item_name] %>_show").replaceWith("<%= escape_javascript(render(:partial=>"#{@resource_options[:view_path]}/show")) %>")
	<%end %>
	
  // Closing the modal
  showAndHideModals();

  // Showing Growl Like Message
  notifySuccess("<%= @notification[:title] %>", "<%= @notification[:message] %>");

<% else %>
	
	// Updating the row which got errored and highlighting it
	$("#tr_<%= @resource_options[:item_name] %>_<%= params[:id] %>").css("background-color", "#ffefef");

	// Showing Growl Like Message
  notifyError("<%= escape_javascript(@notification[:title]) %>", "<%= escape_javascript(raw(@notification[:message])) %>");
  
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kuppayam-0.1.34 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.33 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.32 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.31 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.30 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.29 app/views/kuppayam/workflows/parrot/row.js.erb
kuppayam-0.1.28 app/views/kuppayam/workflows/parrot/row.js.erb