new.js.erb 410 B

12345678910111213
  1. $('#dialog').addClass('bs-modal-lg');
  2. $('#dialog .modal-dialog').addClass('modal-lg');
  3. $('#dialog h3.modal-title').html("Agregar Producto");
  4. // Render the edit form
  5. $('.modal-body').html('<%= j render "products/form_remote" %>')
  6. // Show the dynamic dialog
  7. $('#dialog').modal("show");
  8. // Set focus to the first element
  9. $('#dialog').on('shown.bs.modal', function () {
  10. $('.modal-body .select2').select2();
  11. })