Forum Discussion
QuickBaseJunkie
Qrew Captain
You can add a redirect in your formula by replacing $URL with
$URL & "&rdr=" & $URLTWO
You'll then need to add another variable for URLTWO (var text URLTWO = )
You are correct that you cannot redirect outside of QuickBase, so URL TWO would be something like this (where the pageID=3 is replaced with your pageID).
$URL & "&rdr=" & $URLTWO
You'll then need to add another variable for URLTWO (var text URLTWO = )
You are correct that you cannot redirect outside of QuickBase, so URL TWO would be something like this (where the pageID=3 is replaced with your pageID).
URLRoot() & "db/" & Dbid() & "?a=dbpage&pageID=3";
-SharonBrianCafferelli
6 years agoQuickbase Staff
You can actually do this without using JavaScript as well.
You'll need to use the table setting called "Save parent record automatically when a child record is created." When this box is checked for your table, any time has the form open for adding / editing a record, and they click a link, they won't get the pop-up window asking if they want to save the record first. Instead, the user will see the "Saving" message briefly, then they will be redirected based on whatever link they clicked.
You can use standard a Formula - URL here, which essentially becomes your own custom save button. Without needing to call DoSaveAdd.
You'll need to use the table setting called "Save parent record automatically when a child record is created." When this box is checked for your table, any time has the form open for adding / editing a record, and they click a link, they won't get the pop-up window asking if they want to save the record first. Instead, the user will see the "Saving" message briefly, then they will be redirected based on whatever link they clicked.
You can use standard a Formula - URL here, which essentially becomes your own custom save button. Without needing to call DoSaveAdd.