i have a table output from a database with every row changes colors, here is my code:
<cfif CurrentRow Mod 2>
<cfset BackColor="ffcc00">
<cfelse>
<cfset BackColor="DAE3E7">
</cfif>
that works just fine, but i would like to have the user to be able to change the colors , is that possible ?
so something like a popup with all the rainbow colors, and he could choose the 2 colors ..
Thanks in advance
<cfif CurrentRow Mod 2>
<cfset BackColor="ffcc00">
<cfelse>
<cfset BackColor="DAE3E7">
</cfif>
that works just fine, but i would like to have the user to be able to change the colors , is that possible ?
so something like a popup with all the rainbow colors, and he could choose the 2 colors ..
Thanks in advance