Jump to content

Recommended Posts

In destination after submission screen you have have a java script which is reading the value of a dropdown if it is BACK it will go back two pages if it is not BACK then it will pick the link from value of the dropdown and that will be the destination link

<script>
function goBack() {
    window.history.go(-2);
}

if ('[@cbParamVirtual1]' == 'BACK'){

goBack();
}
else {
window.location.href="[@cbParamVirtual1]";
}
</script>

In here the dropdown was a virtual field you can select the field name from picker

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...