cancel
Showing results for 
Search instead for 
Did you mean: 

confirmation dialog box

Former Member
0 Kudos

Hi all,

I am using confirmation dialog box as an error pop-up during input validation. Is there any way to change the title of the dialog box?

By default the title that comes is "Confirmation dialog".

Or do I need to create an external window for this requirement?

Thanks

Anagha

Accepted Solutions (1)

Accepted Solutions (1)

tony_morellet
Participant
0 Kudos

Hi Anagha,

you could change the title.

I suppose you have define your Confirmationdialog like this :

IWDConfirmationDialog dialog =

wdComponentAPI.getWindowManager().createConfirmationWindow(

dialogText,

controllerInfo.findInEventHandlers("confirm_refus"),

"Confirmer");

After you could change the title :

dialog.setTitle("YOUR TITLE");

Regards,

Tony

Answers (0)