Sochettra / dynatree

Automatically exported from code.google.com/p/dynatree
0 stars 0 forks source link

Tree does not render properly when collapsed using JSON and AJAX Load in IE 6. #254

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In IE 6 there is some render issue. Some time it overlap the content and some 
time it render the tree im-properly when collapsed.
Please find the attachment. Read the Readme.txt for details.

Original issue reported on code.google.com by kris.sar...@gmail.com on 28 Nov 2011 at 12:46

Attachments:

GoogleCodeExporter commented 8 years ago
IE6 is not really on the agenda any more, but I will have a look on it whe I 
find some time.
Thanks for repotring it though.

Original comment by moo...@wwwendt.de on 14 Dec 2011 at 7:05

GoogleCodeExporter commented 8 years ago
Could reproduce it on Safari 

Original comment by moo...@wwwendt.de on 28 Dec 2011 at 1:14

GoogleCodeExporter commented 8 years ago
The generated <span> tags should be included in a single <a> tag (like in the 
sample
http://wwwendt.de/tech/dynatree/doc/test-table.html).

Another tip: you can prevent the blinking effect if you change your onExpand 
like so:

    onExpand: function(flag, dtnode) {
        if( !flag ){
            // make sure we reload everything on next expand
            dtnode.removeChildren();
        }
//     if (flag == true) {
//         dtnode.reloadChildren(function(dtnode, isOk){ 
//         }); 
//      }
    }

Original comment by moo...@wwwendt.de on 28 Dec 2011 at 1:44