_new.js.erb 483 B

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