Forum Discussion
KenCasser
8 years agoQrew Cadet
But actually, I'm using :
var url = "https://xxxx.quickbase.com";
url += "/db/";
url += "abcdefghi";
url += "?a=API_AddRecord";
and then the url gets called from $.ajax
so now I'll try rewriting the javascript without the .ajax
var url = "https://xxxx.quickbase.com";
url += "/db/";
url += "abcdefghi";
url += "?a=API_AddRecord";
and then the url gets called from $.ajax
so now I'll try rewriting the javascript without the .ajax
- _anomDiebolt_8 years agoQrew EliteThat API call returns XML which is not human readable. The XML response to API_AddRecord needs to be parsed with JavaScript to determine if the record was actually added without error (it normally is so you often just skip this step and proceed to the next step in the workflow).
- KenCasser8 years agoQrew CadetHonestly, I'm not sure what that means (as previously mentioned, I'm a self-taught hack), BUT - your answer worked! I got it to do what I wanted it to do. Thank you thank you!