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 )
- RobinCC8 years agoQrew CadetHi 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 ) - RobinCC8 years agoQrew CadetStrangely, if I go into the form properties briefly and then come back out, it DOES work. . I'm guessing this has to some kind of glitch......
- QuickBaseCoachD8 years agoQrew CaptainOk, I just tested mine and it works. Maybe some weird temporary chaching issue.
- JavierMartinez7 years agoQrew CadetWhere would you enter this formula? Sorry for the "noob" question. I'm new to app building and having issues when a certain role clicks save and close it is sending them to the wrong home page. I've checked the role and home page settings and they are set up correctly.
- QuickBaseCoachD7 years agoQrew CaptainThe formula I posted was to edit a record on a report on one table, but upon save redirect to a report on a different table. That was the original question on this thread. I will respond to your question on its own thread as i see that you have a thread already going.