Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by park1q on Aug 14, 2009 03:19
open dhtmlx forum
I can't fix .png alpha bug in IE6

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~~
Answer posted by Support on Aug 14, 2009 05:07
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
});


Answer posted by park1q on Aug 15, 2009 18:25

It works fine..

Thank you.