edit_from_purchase.js.erb 333 B

1234567891011
  1. $('#dialog h3.modal-title').html("Actualizar precio de venta");
  2. // Render the edit form
  3. $('.modal-body').html('<%= j render "products/form_update_price" %>')
  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. })