I'm using Google-Appscripts (JavaScript)
I've a line of code here
console.log("filldata()"+x);
google.script.run.withSuccessHandler(getcolumndata).getcolumncontent(x);
getcolumncontent() is in my Code.gs file and getcolumndata() is in my js.html file.
I've a logger.log at the top of getcolumncontent() to see the content of X once it is passed. X in this case is an array with 3 parts, all strings (no dates).
function getcolumncontent(x){ Logger.log("x ",x); }
X is returned as a blank and I'm not sure why? if anyone has any suggestions please let me know.
I have an similar line of code 2 line above the issue line THAT WORKS NO PROBLEM - google.script.run.withSuccessHandler(setcolumndata).getcolumns(y); where y is an array with 2 parts both strings, no dates.
Any suggestions would be greatly appreciated.