Hi SDN's
I am trying to open a popup by using the below code.
wdComponentAPI.getMessageManager().reportSuccess(" before opening popup ");
IWDConfirmationDialog dialog = wdComponentAPI.getWindowManager().createConfirmationWindow(" test submit",
wdThis.wdGetAPI().getViewInfo().getViewController().findInEventHandlers("dispMsg"),"Ok");
dialog.setWindowPosition(100,200);
dialog.setWindowSize(200,200);
wdComponentAPI.getMessageManager().reportSuccess(" after opening popup ");
I have created the event handler with name dispMsg.
I am able to see the tow print statements before and after the execution of popup. But unable to view the popup.
Please anyone help me regarding this issue.
Thanks,
Raju.