How to make jquery dialog box scrollable?

Issues related to forms.
Post Reply
sashtapu
 
 
Posts: 10
Joined: Mon Feb 22, 2021 4:14 am

How to make jquery dialog box scrollable?

Post 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.
User avatar
Pablo
 
Posts: 21575
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: How to make jquery dialog box scrollable?

Post by Pablo »

There is no standard option, but you can try this code:

Code: Select all

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