This is the code i am running
document.addEventListener('DOMContentLoaded', function() {
google.script.run.withSuccessHandler(populateSearchDropDown).searchByVehicleNum();
});
now my question is , Can i pass 2 callback functions inside withSuccessHandler?
something like this
google.script.run.withSuccessHandler(function1,function2).scriptFunc();
BTW I tried that and its not working
In that case, how about the following modification?
From:
To:
or
Reference: