Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoAre you intending to call an advanced dbpage here (which seems unlikely as you say you are new to Quickbase) or just trying to be on a native Quickbase form on a record and click to update some fields and refresh the record.?
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
[email protected]
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
[email protected]
------------------------------
- JaimeFonseca5 years agoQrew TraineeThe second appreciation!!
------------------------------
Jaime Fonseca
------------------------------- MarkShnier__You5 years ago
Qrew Legend
Try this syntax. It is intended to update the record and refers the user back to that same record. if there are any syntax error please post you code back here as an update.
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord&apptoken=XXXXtokenXXX"
& "&rid=" & [Record ID#]
& "&_fid_30=" // this will blank out field ID 30.
& "&_fid_111=" & URLEncode (Application Approved")// put words into field ID 111
& "&_fid_123=1"; // Set a checkbox to true
var text URLTWO =
URLRoot() & "db/" & dbid() & "?a=dr&rid=" & [Record ID#];
$URLONE
& "&rdr=" & URLEncode($URLTWO)
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
[email protected]
------------------------------- JaimeFonseca5 years agoQrew TraineeHi Mark, thanks in advance for the help.
The syntax of that code gives me an error, it comes out (Formula Syntax Error - The argument list of the function Application must begin with a left parenthesis.)
I have tried in other ways but it does not stop getting an error
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord&apptoken=XXXXtokenXXX"
& "&rid=" & [Record ID#]
& "&_fid_30=" // this will blank out field ID 30.
& "&_fid_111=" & URLEncode (Application Approved")// put words into field ID 111
//"&_fid_123=1"; // Set a checkbox to true
var text URLTWO = "https://headstronglabs.quickbase.com/1db/bq8h9zbbg?a=pageedit&pageID=1"
URLRoot() & "db/" & dbid() & "?a=dr&rid=" & [Record ID#];
$URLONE
& "&rdr=" & URLEncode($URLTWO)
------------------------------
Jaime Fonseca
------------------------------