vote up 0 vote down star

I am using the new jQuery 1.3.2 and jQuery-ui-1.7 libraries along with the UI Dialog. I have a div tag with several form elements (textbox, checkbox, etc.) in it. Upon page load, jQuery shows the div as a dialog. This works absolutely fine in FF, but in IE, the height of the div is wrong. It is just showing the title bar a bit of the content. I explicitly set the height when creating the div. If I set the height option after opening the dialog, the height is corrected, but the content is blank (shows the top third of a textbox). If I allow the dialog to be resizable, if you resize it in IE it works fine, but I don't want to force IE users to resize just to see the contents. Any ideas? Here is the code I use to create the dialog:

$('#dialogDiv').dialog({ 
	bgiframe: true, 
	height: 400, 
	width: 620, 
	modal: true, 
	draggable: true, 
	resizable: false, 
	close: function(event, ui) {
		if($('#agree').val() != '1')
			location.href = 'somepage.html';
	}
});
flag

3 Answers

vote up 0 vote down

Dan,

Your fix worked for me as well.

Thanks!

link|flag
vote up 0 vote down

i am experiencing the same issue. can you shed some light on the changes you made to get it working? for me it is only happening sporadically. sometimes it works fine, other times the dialog is small even though a height is specified.

link|flag
Keep in mind that this may not be the solution for you, but I simply removed the height setting in the dialog options. That worked for me. Update this issue with your results. – Dan Appleyard Mar 26 at 22:09
vote up 2 vote down check

I have answered my own question. I just had to play with the height properties of dialog and some of the elements within the dialog. Good call me!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.