Page 1 of 1

How to make jquery dialog box scrollable?

Posted: Mon May 31, 2021 3:52 am
by sashtapu
Hi Pablo,

I wanted to make JQuery Dialog Box scrollable on y-axis but I didn't find any options inside jquery dialog box properties is there any option present to make the dialog box scrollable?

Thanks and regards,
Shubham Ashtaputre.

Re: How to make jquery dialog box scrollable?

Posted: Mon May 31, 2021 6:07 am
by Pablo
There is no standard option, but you can try this code:

Code: Select all

<style>
#Dialog1
{
overflow-y: scroll !important;
}
</style>