Hi!
For showing selected row it is possible to do: rowOnMouseOver="this.className='reportRowOver'" rowOnMouseOut="this.className='reportRowLight'"
what about
rowOnMouseOver="if (!this.oldClassName){this.oldClassName=this.className;}
this.className='reportRowOver'"
rowOnMouseOut="this.className=this.oldClassName"I havent tried it, but it should work. Ciao, Mario
