onmouseover and onmouseout in <table:tr>
Brought to you by:
yuriy_zubarev
It would be nice to have the ability to define a highlight
style for mouse overs of the table rows.
for example:
<rows evenStyleClass="evenRow"
oddStyleClass="oddRow"
evenStyleHighlightClass="evenRow"
oddStyleHighlightClass="oddRow"
headerStyleClass="headerRow"/>
and then the generated html from the <table:tr> tag
would be something like:
<tr class="oddRow"
onmouseover="this.className='oddRowHighlight';"
onmouseout="this.className='oddRow';">...</tr>