Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
For the most part QuickBase is designed to reload pages to display new data and not as a single page application which refreshes data through background AJAX calls. However, there are libraries and techniques that are widely available that would allow you to create the feature your describe but you would have to write and splice the relevant code into the QuickBase page yourself using an injection technique.
QuickBaseCoachD
8 years agoQrew Captain
Paul, is this syntax what you are looking for? It does the URL and then refreshes the record or report you are on.
var text URL= URLRoot() & "db/" & [_DBID_TABLE_1] & "?act=API_EditRecord"
& "&rid=" & URLEncode ([Record ID#])
& "&_fid_7=" & URLEncode ([Status])
& "&apptoken=" & "XXXX";
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);
var text URL= URLRoot() & "db/" & [_DBID_TABLE_1] & "?act=API_EditRecord"
& "&rid=" & URLEncode ([Record ID#])
& "&_fid_7=" & URLEncode ([Status])
& "&apptoken=" & "XXXX";
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);