Can pop-up modal forms be set to resizable?
Yes,
In Servoy 6 code is:
var win = application.createWindow(“myWin”,JSWindow.MODAL_DIALOG)
win.setResizable(true)
win.show(“popup”)
Thanks fro this! I guess we really need to move to Servoy 6 then.
In Pre-Servoy 6 you can set the resizable property in the application.showFormInDialog() as well.