jQuery UI 1.6rc6 Dialog & Dean Edwards' IE7 lib problem
Hi there,
Has anyone here run into any issues when using Dean Edwards IE7
Javascript library with jQuery UI? I'm currently trying jQuery UI
1.6rc6's Dialog plugin with IE7 2.0 (beta4), and they don't seem to
play nice together, well, at least as far as the Dialog plugin is
concerned.
Here are urls that demonstrate the difference in rendering behavior:
http://emparq.com/jq-ui-1.6rc6/example.html
http://emparq.com/jq-ui-1.6rc6/example-bad.html
The only difference between the two is the inclusion of IE8.js (I
know, he should really consider renaming his project). At any rate,
IE6 or 7 renders fine on the default example, but try it on the bad
example (hit the 'Open Dialog' button) and you'll see what I mean.
You'll see that the buttons are misrendered. Upon further inspection
with the IE Developer Toolbar, it seem the <BUTTON> elements are
appended to an anonymous <!> element, before being appended to the
<DIV class="ui-dialog-buttonpane ..."> element.
ie. results in something like this:
<DIV class="ui-dialog ...">
...
<DIV class="ui-dialog-buttonpane ...">
<!>
<BUTTON class="ui-state-default ..."
...
I'm still in the process of digging, but I thought I'd post here in
case anyone's already seen this before and has a solution or
workaround for it. Please let me know if you have any ideas.
Thanks!
--Mike