Forum Discussion
QuickBaseCoachD
11 years agoQrew Captain
If you are just editing a single record, I think that this will work on a report or a record. It comes from this discussi0on here where Xavier fan chimed in. https://quickbase-community.intuit.com/questions/839147-url-formula-button-refresh-current-page-not-...
var text URL =
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_12="&URLEncode("Closed");
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
var text URL =
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_12="&URLEncode("Closed");
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"