Forum Discussion
EricFixler
7 years agoQrew Member
Dan: Would the "stuff" action be via a formula field? I get an error when i run the code.
I am new to writing the API call function for edit record getting data from an outside source into the form.. Thank you,
I am new to writing the API call function for edit record getting data from an outside source into the form.. Thank you,
- _anomDiebolt_7 years agoQrew EliteApparently there is an extra semicolon in this code:
var resturl = "https://query.yahooapis.com/v1/public/yql?q="; +
Remove it and you should be good:
encodeURIComponent(yql) +
"&format=json" +
"&env=store://datatables.org/alltableswithkeys";var resturl = "https://query.yahooapis.com/v1/public/yql?q=" +
encodeURIComponent(yql) +
"&format=json" +
"&env=store://datatables.org/alltableswithkeys";