cmc-sales/app/webroot/js/customer_edit.js

12 lines
318 B
JavaScript
Raw Normal View History

2023-06-14 14:50:29 -07:00
$(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);
});
});