I have noticed that when you call the function
list.setColors(bg,bgRoll,bgSelect,textNormal,textRoll,textSelect)

the textNormal does not affect the itemStyle until an event took place such
as mouseOver and then mouseOut. So the initial look of the listItem font
color would be always black (set as default) even if you try to change it
with setColors(...).

To overcome this here is the fix:
---+Original Code
68              this.setBgColor(s.bgcolor);
69      };
---+

---+fixed code
68              this.setBgColor(s.bgcolor);
69              this.setFontColor(s.textNormal);
70      };
---+

Just add line 69 to list.js
Can someone with CVS edit access make the change

NanoFace =;^)


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

Reply via email to