Skip to Content
0
Nov 30, 2005 at 10:17 PM

Confirmation Dialog

32 Views

Hello,

I am trying to create a confirmation dialogue in my Web Dynpro project. Below is the code. When this logic is invoked, a box is displayed but neither the message and the button is displayed.

Any thoughts.

Thanks,

Mike

IWDConfirmationDialog dialog;

String dialogText = "No Employee Record Found";

dialog = wdComponentAPI.getWindowManager().

createConfirmationWindow(

dialogText,

wdControllerAPI.getControllerInfo().findInEventHandlers("Ok"),

"OK");

dialog.open();