Hide/disable close symbol in Dialogs.InputDialogBuilder

Hi,
I want to hide/disable the close button symbol in Dialogs.InputDialogBuilder or if i can get close event of close button it would also be helpful.

close

dialg

Hi,

In order to hide close button (x) you can use the following code:

inputDialog.getWindow().setCloseable(false);

In order to subscribe to close event you can use withCloseListener() method of InputDialogBuilder.

Regards,
Gleb