Savefunc

From SmartWiki
Revision as of 11:30, 31 July 2009 by Cameron (talk | contribs)

Jump to: navigation, search

You can use savefunc to create a custom Browser Script that runs whenever a record is saved or submitted.

Instructions:


Example 1:

function savefunc()
{
do this
RunAnotherFunction()
do that
return true
}


Example 2:

  • The following sample JavaScript function will prompt the user to confirm if they really want to save the record.
function savefunc()
{
var answer = confirm ("Do you really want to save this?")
if (answer)
   {
   alert ("Consider it done")
   return true
   }
else
   {
   alert ("Keep filling it in then")
   return false
   }
}
  • The "return false" isn't strictly necessary. If the function does not return true then false is assumed.