Modal dialog
Hello Community,
I'm looking for a possibility to pop up a modal message dialog when working in a workflow like the dialog that is openend on doing this (also like a Java JDialog.show()):
throw new wt.util.WTException(“message”)
but when calling the searched method, the program flow shall continue with the next line, like:
boolean showInfo;
...
showInfo = true;
...
if (showInfo)
{
notifyUser("info message");
// go on with code
}
...

