Using JQuery UI 1.6rc5 and jQuery 1.3:

The following example doesn't work in IE6.

<!-- height of content is over than 150 -->
<div id="dialog">
 <p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
<p>blah blah</p>
</div>

<script type="text/javascript">
$("#dialog").dialog({minHeight: 150}); // minHeight as default
</script>


In above case, 454 Line of jQuery UI Dialog 1.6rc5 got error on IE6.

this.element
    .css({
        minHeight: *options.minHeight - nonContentHeight*, // this seems a
negative number.
        height: options.height == 'auto'
            ? 'auto'
            : options.height - nonContentHeight
    });

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to