0

I want to get value from PopupDialog, but PopupDialog is non blocking like other Dialogs which block on open.

Is there any way to deal with it?

greg-449
  • 109,219
  • 232
  • 102
  • 145
Matt
  • 115
  • 1
  • 11

1 Answers1

1

PopupDialog extends the JFace Window class so you can call:

setBlockOnOpen(true);

to ask for blocking. Do this before calling the open() method.

greg-449
  • 109,219
  • 232
  • 102
  • 145