fburns
10-01-2004, 03:01 PM
Does anyone see the problem?
<style>
td.TabOn {border-style:none;
background-color:lightsteelblue;}
td.TabOff {border-style:dotted;
background-color:steelblue;}
</style>
<cfparam name="DefaultTab" default="Staff">
<table style="margin-bottom:0" cellspacing="0" cellpadding="4">
<tr>
<td class="#IIF(DefaultTab eq 'Staff',de('TabOn'),de('TabOff'))#">Staff</td>
</tr>
</table>
I'm not getting an error, just not getting the expected outcome.
<style>
td.TabOn {border-style:none;
background-color:lightsteelblue;}
td.TabOff {border-style:dotted;
background-color:steelblue;}
</style>
<cfparam name="DefaultTab" default="Staff">
<table style="margin-bottom:0" cellspacing="0" cellpadding="4">
<tr>
<td class="#IIF(DefaultTab eq 'Staff',de('TabOn'),de('TabOff'))#">Staff</td>
</tr>
</table>
I'm not getting an error, just not getting the expected outcome.