Forum Discussion
BlakeHarrison
4 years agoQrew Captain
If you need the code page to determine your text, I don't believe there is any way for your use case to work without a button click. On the other hand, if it's possible to do a similar calculation within the formula field itself, you could by-pass the code page altogether.
------------------------------
Blake Harrison
bharrison@datablender.io
DataBlender - Quickbase Solution Provider
Atlanta GA
404.800.1702 / http://datablender.io/
------------------------------
------------------------------
Blake Harrison
bharrison@datablender.io
DataBlender - Quickbase Solution Provider
Atlanta GA
404.800.1702 / http://datablender.io/
------------------------------
QBSystem
4 years agoQrew 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
------------------------------
- AhuvaBrown4 years agoQrew CadetDepending 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
------------------------------