Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Here is another solution which might be a better user interface as the user would not have to click a special save button.
var text URLONE = URLRoot() & "db/" & Dbid() & "?a=er&dfid=10&rid=" & ToText([Record ID#]);
var text URLTWO = URLRoot() & "db/" & [_DBID_my table name] & "?a=q&qid=xx";
$URLONE
& "&NextURL=" & URLEncode($URLTWO )
var text URLONE = URLRoot() & "db/" & Dbid() & "?a=er&dfid=10&rid=" & ToText([Record ID#]);
var text URLTWO = URLRoot() & "db/" & [_DBID_my table name] & "?a=q&qid=xx";
$URLONE
& "&NextURL=" & URLEncode($URLTWO )
RobinCC
8 years agoQrew Cadet
Hi Mark,
When I tried this method, it did not redirect to the TASK table. It went back to the starting point in the TEAMS table. Is there some other setting I need somewhere in my app or maybe I have a glitch?
var text URLONE = URLRoot() & "db/" & Dbid() & "?a=er&dfid=10&rid=" & ToText([Record ID#]);
var text URLTWO = URLRoot() & "db/" & [_DBID_TASKS] & "?a=q&qid=7";
$URLONE
& "&NextURL=" & URLEncode($URLTWO )
When I tried this method, it did not redirect to the TASK table. It went back to the starting point in the TEAMS table. Is there some other setting I need somewhere in my app or maybe I have a glitch?
var text URLONE = URLRoot() & "db/" & Dbid() & "?a=er&dfid=10&rid=" & ToText([Record ID#]);
var text URLTWO = URLRoot() & "db/" & [_DBID_TASKS] & "?a=q&qid=7";
$URLONE
& "&NextURL=" & URLEncode($URLTWO )