My favorites | Sign in
Project Home Downloads
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 492: fix for column display in IE
1 person starred this issue and may be notified of changes. Back to list
Status:  Done
Owner:  ----
Closed:  Mar 2015


 
Reported by buech...@gmail.com, Aug 27, 2014
What steps will reproduce the problem?

create columns as per example (writing into several spans)
use special CSS with nth-child
does not work for current IE.

FIX:

replace by similiar CSS2 construct

use  +*  instead of nth-child
first-child +* 
first-child +* +*
etc.

tested in current IE, FF and chrome.
I think also valid for ca. IE7+:

 ul.fancytree-container span.td {
     position: absolute;
     display: inline;
     border-size: 1px;
     overflow: hidden;
     background-color: white;
  }
  ul.fancytree-container span.td:first-child {
     position: static;
	      width: 150px;

  }
  ul.fancytree-container span.td:first-child +*  {
     left: 600px;
     width: 150px;
  }
  ul.fancytree-container span.td:first-child +* +* {
     left: 750px;
     width: 250px;
  }

Aug 27, 2014
Project Member #1 moo...@wwwendt.de
(No comment was entered for this change.)
Status: Accepted
Labels: Milestone-Release1.2.x
Mar 29, 2015
Project Member #2 moo...@wwwendt.de
moved to GitHub: https://github.com/mar10/dynatree/issues/492
Status: Done

Powered by Google Project Hosting