12 lines
318 B
JavaScript
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);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|