OR

3) Customise it entirely for your beans, e.g.

<cffunction name="runSetter">
                <cfargument name="property" type="string" required="yes">
                <cfargument name="value" type="string" required="no"
default="">

                <cfinvoke component="#this#"
                                                        
method="SET#arguments.property#"
                                                        
value="#arguments.value#"
                                                        >

        </cffunction>



-----Original Message-----
From: Paul [mailto:[EMAIL PROTECTED]
Sent: 12 October 2005 17:25
To: CF-Talk
Subject: RE: dynamic function call puzzle


Wow, this is great, really expanding my horizons here...

So in the inherited function CF throws this error: "Variable RETVAL is
undefined."

I do have the following as you sent; CF refers to the CFINVOKE line number
in the error message.  Maybe I need a deeper understanding to figure out
what I may have done differently to cause the error...  (Something about my
Setters perhaps?)

<cfset var retval = "">
<cfinvoke component="#this#"
        method="#arguments.functionname#"
argumentCollection="#arguments.args#"
        returnvariable="retval">
<cfreturn retval>

-----Original Message-----
From: Kerry [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 12, 2005 10:04 AM
To: CF-Talk
Subject: RE: dynamic function call puzzle

oops, with that flavour of the function you will need:

args = structnew();
args[colArray[x]] = q[colArray[x]][q.currentrow];
o.runfunction("set"&colArray[x],args);




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to