sellers_for_commissions.js.erb 361 B

123456789101112
  1. $('#dialog h3.modal-title').html("Generar comisiones");
  2. $('#dialog').modal();
  3. $('.modal-body').html('<%= j render("commissions/sellers_for_commissions") %>');
  4. // Show the dynamic dialog
  5. $('#dialog').modal("show");
  6. // Set focus to the first element
  7. $('#dialog').on('shown.bs.modal', function () {
  8. $('.select2').select2();
  9. handleMultiSelect();
  10. })