QuickBaseCoachD
7 years agoQrew Captain
edit a record and redirect to an outside website
Does anyone know the Syntax to to an update in Quick Base and then land the user on an outside website?
var text AddAcknowledgment = URLRoot() & "db/" & "xxxxxxxxx" & "?act=API_AddRecord"
& "&_fid_8=" & ToText([Record ID#]);
var text eScreen = "http://www.google.com";
$AddAcknowledgment
& "&rdr=" & URLEncode($eScreen)
The above would work if the redirect was to another Quick Base page, but does not work to redirect to an outside web page. It tries to land me on a Quick Base page starting with my realm URL.
var text AddAcknowledgment = URLRoot() & "db/" & "xxxxxxxxx" & "?act=API_AddRecord"
& "&_fid_8=" & ToText([Record ID#]);
var text eScreen = "http://www.google.com";
$AddAcknowledgment
& "&rdr=" & URLEncode($eScreen)
The above would work if the redirect was to another Quick Base page, but does not work to redirect to an outside web page. It tries to land me on a Quick Base page starting with my realm URL.