How to use a combo box custom keystroke script to call a function
I simply want to use a combo box custom keystroke script to call a function when any item is chosen from the box's list. I found many examples and tried many unsuccessfully. My most recent attempt is this:
if(event.changeEx != ""){this.ConcessionMaximum()}
Also tried referencing the export values (there are only three in the list) like this:
if(event.changeEx == "con" || event.changeEx == "fha" || event.changeEx == "va"){
this.ConcessionMaximum();
}
Apologies for what seems a very elementary question, but I would appreciate a solution.
