0
votes

Is it possible to add confirmation window on the @picklist window? That is, after clicking OK button, I want to prompt user to confirm the choice.

1
I think you will have to do that yourself, and wrap your @picklist in a @while loop or similar. - Anders Lindahl
Would you be so kind and give an example through formula use or LS? - Thunderer
Are you familiar with @Prompt? - Richard Schwartz

1 Answers

2
votes

try this

@DoWhile(
    @PickList(...);
    n :=@Prompt([YesNo]; "Conformation"; "All Right?");
    n = 1;
)