cmc-sales/app/webroot/js/customer_edit.js
2023-06-15 07:54:32 +10:00

12 lines
318 B
JavaScript

$(function() {
// Fairly quick and easy way to make this select box editable. Good enough.
$("#CustomerPaymentTermsOptions").live('change', function(data) {
selectedOption = $("#CustomerPaymentTermsOptions").val();
$("#CustomerPaymentTerms").val(selectedOption);
console.log(selectedOption);
});
});