I noticed that a way had been included to alternate the row colors but
not one to highlight the row on mouseover so I added one variable and
changed 2 lines of code in the displaylist.cfm custom tag added a
style and set it up. I thought I would pass it along if you want to
include it in the app cool, if not it might be handy for Plum users.
I have attached a text file with the changes.
<cfparam name="Application.Formatting.RowMouseOver" default="rowover">
Line 733
<cfoutput><tr
class="#Application.Formatting.AlternateRowShading(currentRow)#"
onMouseOver="this.className='#Application.Formatting.RowMouseOver#'"
onMouseOut="this.className='#Application.Formatting.AlternateRowShading(currentRow)#'"></cfoutput>
Line 978
<tr
class="#Application.Formatting.AlternateRowShading(currentRow)#"
onMouseOver="this.className='#Application.Formatting.RowMouseOver#'"
onMouseOut="this.className='#Application.Formatting.AlternateRowShading(currentRow)#'">
Style
.rowover td {
background-color: #CC6633;
padding-top: 1px;
padding-right: 6px;
padding-bottom: 2px;
padding-left: 1px;
border-bottom: 1px solid Black;
}