Close a window opened with globals.svy_mod_showFormInDialog

Hi!

We are using globals.svy_mod_showFormInDialog to open forms in certain situations.

This will display a new window with the form, that’s the idea.

Is there any way to avoid showing the close window option (the typical upper right X)?

Or it’s possible to run a method when someone close this window?
For the moment we are using the onHide() method.

Thanks!


Federico Galluzzo
Area 5578

You can not avoid the window to have a close window button. But if you return false in the onHide method nothing happens when a user uses it.

Thanks!!