path

path redirect the user to a different page.

note: path must be last item ( processor does not check for subsequent ones after path )

// example path action object
{
"action" :"path",
  "options" :
       {
           "path": "/invoiceList"
       }
}

// This will replace the BetterForms page with the URL 'www.delfsengineering.ca'
{
"action" : "path",
    "options" :
    {
        "sameWindow" : true,
        "url" : "http://www.delfsengineering.ca"
    }

}

FileMaker Custom Function

    BF_SetAction_Path("/form/123-1234-5678") // takes user to form 123...

Last updated