Ticket #5498 (new defect)
TabContainer: Error rendering closable tab in IE (CSS race condition?)
| Reported by: | guest | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.3 |
| Component: | Dijit | Version: | 1.0 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
Hello,
I'm running into an error where a tab is not rendered correctly in IE 7 as soon as I make the tab closable.
I have the following page:
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://o.aolcdn.com/dojo/1.0.2/dojo/dojo.xd.js"" djConfig="parseOnLoad: true"></script>
<script type="text/javascript">
dojo.require("dojo.parser");
dojo.require("dijit.layout.TabContainer");
dojo.require("dijit.layout.ContentPane");
</script>
<style type="text/css">
@import "http://o.aolcdn.com/dojo/1.0.2/dojo/resources/dojo.css";
@import "http://o.aolcdn.com/dojo/1.0.2/dijit/themes/tundra/tundra.css";
</style>
<title>Test</title>
</head>
<body class="tundra">
<div dojoType="dijit.layout.TabContainer" jsId="tablist" style="width:100%;height:100%;">
<div dojoType="dijit.layout.ContentPane" closable="true" title="testing">test</div>
</div>
</body>
</html>
As soon as I leave out the closable="true" part, it renders as it should. I have tested the same page in Firefox 2.0 and Safari 3.0. No problems there.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.