Closed ZhaoC closed 7 years ago
Yes you can:
$.jsPanel({
paneltype: 'modal',
resizeit: true
});
will create a modal panel that is resizable (using the built-in resizeit option). Or:
$.jsPanel({
paneltype: 'modal',
resizeit: true,
dragit: true
});
and it's also draggable via the built-in dragit option.
got it, thanks a lot!
Hi Stefan, I'm wondering is it possible to enable resize functionality when create a panel under ‘modal’ style. I notice that you explicitly exclude the ’jspanel-modal’ in method ‘resetZis()’ and other configurations for 'modal' style. Can I make the panel resizable without override your existing corresponding methods? Thank you!