WebJEA icon indicating copy to clipboard operation
WebJEA copied to clipboard

How to display second a form

Open pizzablitz opened this issue 6 years ago • 3 comments

Hi, I would like to display a second form after the first form. How can I do that? For example, depending on the answer from the first form, the user must enter a confirmation. Thanks

pizzablitz avatar May 02 '19 09:05 pizzablitz

It's not possible to do this as you've described. However, you could do one of the following:

  • Add a switch or boolean field, something like [Parameter(Mandatory,HelpMessage="I confirm I want to delete this account")][switch]$Confirm

  • You could also link to another form, however that form would already be visible to the user and they could click on that form directly.

markdomansky avatar May 05 '19 14:05 markdomansky

Hi Mark Sorry that I ask again. Can you give me an example of how I can link to another form? Many Thanks

pizzablitz avatar May 07 '19 16:05 pizzablitz

Sure! Here is an example. To link to another form, you would write-host or write-output "[[a|URI|LINK]]" where URI is the URI you want, and LINK is what you want to display.

You may want to check out the presentation I did on this. Despite some technical issues, it covers the majority of the features.

markdomansky avatar May 10 '19 00:05 markdomansky