lookup dropdown change event in table-dv.js
Posted: 2017-03-24 03:01
appgini ver: 5.60
I am trying to hide some form elements based on a selection via a lookup dropdown. Below is what I have tried and it does not work.
table-dv.js file content:
jQuery( document ).ready(function( $ ) {
console.log("Help Me"); // this works...
$("#fk_project").on("change", function() {
console.log("test"); // this does not.
$('#nn_other').hide();
});
});
I am trying to hide some form elements based on a selection via a lookup dropdown. Below is what I have tried and it does not work.
table-dv.js file content:
jQuery( document ).ready(function( $ ) {
console.log("Help Me"); // this works...
$("#fk_project").on("change", function() {
console.log("test"); // this does not.
$('#nn_other').hide();
});
});