Hi.
As you know default in IE6, .png file dose not diplayed correctly.
My treemenu icon image format is .png file.
I works fine in IE7 but in IE6
so I tested with DD_belatedPNG.js, pngfix.js, unitpngfix.js, IE7.js, IE8.js…
But they could not resolve…
Do you have any solution?
plz. help~~
All above solutions will work for static html only, and will not work for dynamic content, such as dhtmlxtree
Instead of including pngfix.js as additional file you can use default tree init, but place code from pngfix.js when data already will be loaded in tree
tree.loadXML(url,function(){
// copy code from pngfix.js here
});
It works fine…
Thank you.