Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Corey
Here is an example of a formula URL button which will change the value of a checkbox and put up a green message for 5 seconds (5000 miliseconds)
var bool NewToggle = not [Toggle field to send email];
var text URL = URLRoot() & "db/" & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_80=" & $NewToggle;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Email has been sent', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);"
Is that what you are trying to do? Just trigger an email Notification?
Here is an example of a formula URL button which will change the value of a checkbox and put up a green message for 5 seconds (5000 miliseconds)
var bool NewToggle = not [Toggle field to send email];
var text URL = URLRoot() & "db/" & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_80=" & $NewToggle;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Email has been sent', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);"
Is that what you are trying to do? Just trigger an email Notification?