new.js.erb 397 B

1234567891011
  1. $('#dialog h3.modal-title').html("Activar caja registradora");
  2. // Render the edit form
  3. $('.modal-body').html('<%= j render("open_cash_registers/form") %>');
  4. // Show the dynamic dialog
  5. $('#dialog').modal("show");
  6. // Set focus to the first element
  7. $('#dialog').on('shown.bs.modal', function () {
  8. $('.first_input').focus();
  9. $('#open_cash_register_cash_register_id').select2();
  10. });