Hi,
I have a dialog opened with the following code:
function openDialog(title,node,x,y) {
$('#'+node).dialog({
width : x,
modal : true,
autoOpen:false,
resizable: false,
closeOnEscape: true,
height : y,
title : title
});
$('#'+node).dialog('open');
}
This works great in Firefox, but in IE i'm having a strange issue.
If I call the dialog box with nothing inside it works as it should do,
when I start putting div's inside the dialog box.. it begins to shrink
in height.
If I have over about 10 divs in there, it goes so small that it
doesn't actually show anymore an displays an error on line 1049 (I
think something to do with min-height), my dialog looks like this:
<div class="dialog" id="create_user">
<form method="post" action="index.php">
<div>test</div>
<div>test</div>
<div>test</div>
<div>test</div>
<div>test</div>
</form>
</div>
The event I run to make the dialog appear is:
openDialog('Add a New User','create_user',310,330);
The more div's i put inside.. the smaller in height it goes can anyone
help?
Thanks
Kevin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---