Question
dynamic href property in cfgrid?
is there a way to make this work? i'm trying to use different href values inside a cfgrid, based on the value returned by the query. for some reason, it always navigates to the second url, "someOtherURL". grid format is html
<cfgrid>
...
<cfif myQry.myColumn eq 'something'>
<cfgridcolumn href="someURL">
<cfelse>
<cfgridcolumn href="someOtherURL">
</cfif>
...
</cfgrid>
thanks a lot!
