Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
var text URL = urlroot() & "db/" & dbid() & "?act=API_EditRecord"
& "&apptoken=xxxxxxxxx"
& "&_fid_xx=" ToText(now());
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
// note, if you have application tokens enabled in the Advanced Properties setting for the app, you will need to include that apptoken line
Replace xx with the field Id of a date time field that you will use on the form to show the users when the notification has been sent.
& "&apptoken=xxxxxxxxx"
& "&_fid_xx=" ToText(now());
"javascript:" &
"$.get('" &
$URL &
"',function(){" &
"location.reload(true);" &
"});"
& "void(0);"
// note, if you have application tokens enabled in the Advanced Properties setting for the app, you will need to include that apptoken line
Replace xx with the field Id of a date time field that you will use on the form to show the users when the notification has been sent.