Form as sizeable Window

Hi All,
I’m really new to Servoy so forgive me. When I create any form and run it via smart client it appearsto just fill the client area with no min or max controls. What do I do to make it appear as a window that I can resize, minimize etc.

Thanks
Glenroy

Hi Glenroy,

For starters you can show the form in a popup window like this:

var win = application.createWindow(“Customers”, JSWindow.MODAL_DIALOG);
forms.frmCustomers.controller.show(win);

This will give you a popup window that you can resize. (no min and max buttons though).

Take a look at the window plugin.

Good luck!
Omar