Side navigation
#1568 closed bug (fixed)
Opened September 05, 2007 02:04PM UTC
Closed October 02, 2007 06:27PM UTC
TreeView wraps at hitarea-DIV in IE6
Reported by: | mbirth | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | 1.2 |
Component: | plugin | Version: | 1.1.4 |
Keywords: | plugin,treeview | Cc: | |
Blocked by: | Blocking: |
Description
I wanted to use jQuery and TreeView in our intranet, but since 90% of the users are using old Win2k-boxes with IE6, I can't until this is not fixed.
IE6 wraps long parent-nodes just before the <li> text if the browser window is too small. (see attached pic!) Removing the code to add the hitarea-DIV restores normal look. Setting various white-space: nowrap; doesn't work. In IE7, Opera and FF everything looks fine.
Attachments (1)
Change History (3)
Changed September 06, 2007 03:51PM UTC by comment:1
Changed September 12, 2007 05:15PM UTC by comment:2
After playing around I found the fix. Seems that MSIE doesn't like float: left;
and interpretes it as a white-space. So just add
"float": "none",
to the
if( $.browser.msie ) $.extend( hitareaCSS, {
section and everything works as expected. Tested with MSIE6 and 7.
Changed October 02, 2007 06:27PM UTC by comment:3
resolution: | → fixed |
---|---|
status: | new → closed |
Fixed in [3510].
Bug #206 looks like it is similar to this. If you read the comments in the mentioned link, there's the following info:
There's a workaround for <PRE>-text. Maybe this also works for <LI>.