Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CubeYogi/2191d70ae14a3dea314476613bfa3fc0 to your computer and use it in GitHub Desktop.
Save CubeYogi/2191d70ae14a3dea314476613bfa3fc0 to your computer and use it in GitHub Desktop.
//Validating Name
if(input.Name != null && input.Name.trim() != "")
{
//Redirecting Form with name autofilled
//Replace field names with your form's link names if needed
openUrl("#Form:Scheduling?Name="+input.Name,"same_window");
}
else
{
info "Registration Name is empty";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment