Forum Discussion
- QuickBaseCoachDQrew CaptainThere is a syntax which involved suffixing a URL with &NextURL = .... to control where a record goes after the save, but that has to to built into where the user launches off of to add a record.
Can you tell me where the user launches off of to get to that third record? Is there a URL we can modify such as one which is doing act=API_GenAdRecordForm? - Stephony_DBH_Qrew CadetURLRoot() & "db/" & [_DBID_DOCUMENTS] & "?a=API_GenAddRecordForm&_fid_13=" & URLEncode ([Record ID#])& "&z=" & Rurl()
- QuickBaseCoachDQrew CaptainAh, so we are in luck :)
var text URLONE = URLRoot() & "db/" & [_DBID_DOCUMENTS] & "?a=API_GenAddRecordForm&_fid_13=" & URLEncode ([Record ID#]);
var text URLTWO = Urlroot() & "db/" & [_DBID_TABLE name of where you want to land the user] & "?a=dr&rid=" & [Related Table 1 record # field for the record to show];
$URL
& "&rdr=" & URLEncode($URLTWO)