Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Here is a formula for a URL formula field. (Not a Rich Text formula field)
var Text URL = URLRoot() etc up to & [Record ID#];
//(Sorry, my ipad is not kett8ng me cut and paste. ). Be sure to end the formula variable with a semicolon.
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
This concept here is that you make a formula variable called URL and then that piece of JavaScript will run the URL and refresh whatever page you are on.
You can also probably get it to work with an image too.
If I get a chance I will post that too
var Text URL = URLRoot() etc up to & [Record ID#];
//(Sorry, my ipad is not kett8ng me cut and paste. ). Be sure to end the formula variable with a semicolon.
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
This concept here is that you make a formula variable called URL and then that piece of JavaScript will run the URL and refresh whatever page you are on.
You can also probably get it to work with an image too.
If I get a chance I will post that too