#9103 closed defect (fixed)
IE: hidden content still displays
Reported by: | Douglas Hays | Owned by: | Jared Jurkiewicz |
---|---|---|---|
Priority: | high | Milestone: | 1.4 |
Component: | Editor | Version: | 1.3.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Using IE, display:none does not work with Editor content.
<div dojoType="dijit.Editor" id="editor0" height="100" plugins="[]"> <span style="display:none;">this is hidden</span> </div>
shows this is hidden as the content.
This can be worked around by adding:
<script type="dojo/connect" event="onLoad"> this.execCommand('RespectVisibilityInDesign', true, null); </script>
This execCommand should be automatically done by the Editor.
Change History (7)
comment:1 Changed 11 years ago by
Milestone: | tbd → future |
---|---|
Owner: | liucougar deleted |
comment:2 Changed 11 years ago by
Milestone: | future → 1.4 |
---|---|
Owner: | set to Jared Jurkiewicz |
comment:3 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 Changed 11 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:5 Changed 11 years ago by
Okay, calling the editor execCommand causes insanity on page load, it causes massive bouncing around, seen when loading test_Editor.html. Oof. Need to just call it on the doc directly.
comment:6 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
comment:7 Changed 11 years ago by
Note: See
TracTickets for help on using
tickets.
(In [20450]) Fixing minor display issue in IE. \!strict fixes #9103