Forum Discussion
QBSystem
Qrew Member
Thanks for your reply. I am looking to get data via url request from an outside website. I dont think this can be done within the formula. If yes please let me know.
Thanks
------------------------------
Chaim Weiss
------------------------------
Thanks
------------------------------
Chaim Weiss
------------------------------
AhuvaBrown
4 years agoQrew Cadet
Depending on how your code is written, it might be possible to post the results of your request to the field in the code page itself. You would need to add something like this to your code after the request:
$.post(dbid, {
act: "API_EditRecord",//or API_AddRecord, depending on what you're trying to do
rid: rid,
_fid_6: yourtext
}).then(function(xml) {
//go to url
});
}
------------------------------
A Brown
------------------------------
$.post(dbid, {
act: "API_EditRecord",//or API_AddRecord, depending on what you're trying to do
rid: rid,
_fid_6: yourtext
}).then(function(xml) {
//go to url
});
}
------------------------------
A Brown
------------------------------