This content has been marked as final.
Show 1 reply
-
1. Re: Pulling Content with CFToolTip from Database
ilssac May 19, 2010 9:20 AM (in response to kodemonki)You are trying to double evaluate the variable. You are evaluating the variable to get the CFML code from the database, then you want your system to evaluate that code again.
You can do this with some combonation of the evaluate and delayEvaluate [de] functions. IIRC evaluate(de(databaseVariable)) is the proper nesting.
But often this turns into a sub-optimal solution and reworking ones concetps to make use of something like a custom tag or includes or user defined functions or other features will be better.

