> Anyone remember how to change the colour of differing select box rows?

In JS or CF?

If in CF (assuming query):

<cfoutput query="myQuery">
        <tr>
                <cfif myQuery.currentRow MOD 2 eq 0>
                <td bgcolor="##FF0000">#somefield#</td>
                <cfelse>
                <td bgcolor="##00FF00">#somefield#</td>
                </cfif>
        </tr>
</cfoutput>

Paul



-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to