edit.js.erb 582 B

1234567891011121314
  1. $('#dialog h3.modal-title').html("Editar vendedor");
  2. $('#dialog').removeClass('modal-lg');
  3. $('.modal-footer').remove();
  4. $('.modal-body').html(""); //limpiar el modal antes; la siguiente linea es por si se abrio previamente el detalle de venta
  5. $('.modal-dialog').removeClass('modal-lg');
  6. // Rend$( ".selector" ).dialog({ closeOnEscape: false });er the edit form
  7. $('.modal-body').html('<%= j render("form") %>');
  8. // Show the dynamic dialog
  9. $('#dialog').modal("show");
  10. // Set focus to the first element
  11. $('#dialog').on('shown.bs.modal', function () {
  12. $('.first_input').focus();
  13. });