Nathan Friend
Nathan Friend

Reputation: 12814

JQuery UI Dialog - no scroll bars in IE

I'm displaying a large amount of information in a JQuery UI Dialog box, which works great in every browser except IE; in IE the vertical scroll bars never appear, stretching the dialog way below the page. In all other browsers the box automatically adds scroll bars, preventing the box from changing size.

I'm explicitly setting the height when I create the dialog. I've also tried changing the height explicitly after creating the dialog, as in

$('#dialogID').dialog( ... ).height('600');

to no avail. I've messed around with the !DOCTYPE, also in vain.

Any suggestions would be much appreciated.

Upvotes: 0

Views: 1673

Answers (1)

zod
zod

Reputation: 12437

you can try to put this for the div style=" overflow:scroll"

Upvotes: 3

Related Questions