Why is my IF statement not working?
Here's my current IF statement that is not working.
<cfif (not structKeyExists(cfData, 'data.remove_pdf')) OR (structKeyExists(cfData, 'data.remove_pdf') AND #cfData.data.remove_pdf# neq "true")>
<a href="https://mysite.com/help/pdfexport/id/#cfData.data.id#">
<img src="/images/pdficon_small.png" alt="PDF of this article"/>
</a>
</cfif>
I want to say if remove_pdf field is undefined or if it’s defined but the value is not equal to true then show the pdf icon. When I dump the #cfData#, it shows remove_pdf value as undefined or true.
