Exclusive Focus on Form Popup

I want to popup a form and then have exclusive focus on the form such that the user can’t click out of it unless they press a close button.

This should be basic, but I forget which component does this. Or if there’s a new better method for doing this. Windows, Popup, FormPopup, dialogs? Let me know the best way of doing so with current Servoy.

You need a modal dialog, so for example:

	var win = application.createWindow("name", JSWindow.MODAL_DIALOG);
	win.show(forms.yourform);

Joas:
You need a modal dialog, so for example:

	var win = application.createWindow("name", JSWindow.MODAL_DIALOG);
win.show(forms.yourform);

Roger, thanks!