Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
//I tested this and it worked
var text URL = URLRoot() & "db/" & .... insert your add record URL here;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Record created in separate non-child table', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);"
// the 5000 mean display the quiet pop up for 5 seconds.
// and you get to control the pop up words.
var text URL = URLRoot() & "db/" & .... insert your add record URL here;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Record created in separate non-child table', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);"
// the 5000 mean display the quiet pop up for 5 seconds.
// and you get to control the pop up words.