create.js.erb 595 B

123456789101112131415
  1. $("#error_explanation_remote_customer").html("")
  2. <% if @customer.errors.any? %>
  3. $('#error_explanation_remote_customer').removeClass('hidden');
  4. <% @customer.errors.values.each do |message| %>
  5. $("#error_explanation_remote_customer").append($("<li />").html("<%= message.first.to_s %>"));
  6. <% end %>
  7. <% else %>
  8. $('#sale_customer_id').append($('<option>', {
  9. value: <%= @customer.id %>,
  10. text : '<%= @customer.nick_name %>'
  11. }));
  12. $('#sale_customer_id').select2();
  13. $("#sale_customer_id").val(<%= @customer.id %>).trigger("change");
  14. $('#dialog').modal('toggle');
  15. <% end %>