Forum Discussion
MarkShnier__You
2 years agoQrew Legend
Existing JavaScript URL formula buttons will continue to run indefinitely. But as you can see they are no longer editable. If you post your actual code and not just a screenshot I will show you how to change that code to have the same effect but not using JavaScript.
Here for example is how we do it now. Note the new syntax for how to refresh the page.
var text Approve = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & ToText([Record ID#])
& "&_fid_144=Approved";
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$Approve
& "&rdr=" & URLEncode($RefreshPage)
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
Here for example is how we do it now. Note the new syntax for how to refresh the page.
var text Approve = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & ToText([Record ID#])
& "&_fid_144=Approved";
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$Approve
& "&rdr=" & URLEncode($RefreshPage)
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
- BrianDunk2 years agoQrew CadetHere is my current code:
Thanks for the help.
var text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord"
& "&rid=" & [Budget item ID#]
& "&_fid_57=" & ToText(Now());
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
------------------------------
Brian Dunk
------------------------------- MarkShnier__You2 years agoQrew Legendvar text URL = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord"
& "&rid=" & [Budget item ID#]
& "&_fid_57=" & ToText(Now());
var text RefreshPage = URLRoot() & "db/" & Dbid() & "?a=doredirect&z=" & Rurl();
$URL
& "&rdr=" & URLEncode($RefreshPage)
As as side note there is a nuance about the use of Now().
if you replace the line with this
& "&_fid_57=now;
The effect will be to populate the field with the moment that the user actually clicks the button as opposed to when the button loaded on the screen.
In many cases it's good enough to be close but if you were writing an application where users were say clocking in and clocking out on a time card system then you want to record the time they actually clicked the button and not perhaps a stale date/time when the page loaded.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------- BrianDunk2 years agoQrew CadetOk so I pasted the new code in. When I click the button now I get the following:
------------------------------
Brian Dunk
------------------------------