jquery-1.3 + ui-jquery-1.6rc5
This code run perfectly with FF:
$("#creerDialog").dialog(
{
autoOpen:false,
width: 415,
height: 280,
position:"center",
title:"création d'un résident",
resizable:false,
buttons: {
"Sauver":function(){creation();$(this).dialog
('close')},
"Effacer":function(){$("#form1").each(function()
{this.reset();})}
}
});
<div id='creerDialog' style="display:none" >
<form action='' id='form1' >
...
</form>
</div>
But with IE7 the form part is not displayed into the dialog window
when I
press a button to open it.
If I move the dialog window, the form part cannot "catch" the dialog
window. Same phenomena when the browser window is reduced.
Any explanation ?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---