Page 1 of 1

Form user-defined rules

Posted: 05 Nov 2013
by MES5464
Is there a way to use a form's user-defined rules to open a special use form?

I need to have a special list view that will only send a user to this special form.

Re: Form user-defined rules

Posted: 05 Nov 2013
by Dmitry Kozlov
Hello,

You can get Source url parameter with JavaScript in a form and if users come from the specific list view redirect them to another form.

Re: Form user-defined rules

Posted: 05 Nov 2013
by MES5464
Can you post an example of what that looks like?

Re: Form user-defined rules

Posted: 07 Nov 2013
by MES5464
Can I please get an example of how to redirect a user to a different form based on the list they came from?

Re: Form user-defined rules

Posted: 17 Nov 2013
by Dmitry Kozlov

Code: Select all

var source = GetUrlKeyValue("Source");
// source variable contains url of the previously opened page
if (condition) {
   fd.openForm("Redirect URL");
}