Reputation: 12814
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