It seems that there is a line in dynlayer.js which needs to be updated
for ie6.

in 2.5.7 dynlayer.js, line 163 change:
  if (is.ie55 && this.bgImage==null && this.html==null) s+='
background-image:url('+DynAPI.librarypath+'dynapi/images/common/transparent.
gif);';

to

  if ( (is.ie55 || is.ie6) && this.bgImage==null && this.html==null)
s+='
background-image:url('+DynAPI.librarypath+'dynapi/images/common/transparent.
gif);';

That is, just change "is.ie55" to the "(is.ie55 || is.ie6)".

This seems to be why some folks are having trouble with RiFastTreenode
in ie6.

-Terra



__________________________________________________
FREE voicemail, email, and fax...all in one place.
Sign Up Now! http://www.onebox.com


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://www.mail-archive.com/dynapi-dev@lists.sourceforge.net/

Reply via email to