Modal behavior like Dialog
-
I need a custom Modal that behaves like Dialog: it has a determined width but not the height, so it raise until a specified
max-height
and then begin to scroll. I think that modal-layout is pretty rigidous and often cause wide blank spaces in some screen sizes.Is it possible @rstoenescu ?
Thanks in advance,
Niccolò -
It seems I had a similar conversation on gitter recently.
The gist of it was: QDialog is really a QModal with special constraints and setup, cf source code: https://github.com/quasarframework/quasar/blob/dev/src/components/dialog/Dialog.vue
Just saying… -
@spectrolite Yes, you’re right! Maybe I’ll take a look to Dialog. Thank you!