Hey,
so I have this in my component function:
<cffunction name="doTransfer" access="public" returntype="struct"
output="false" hint="Change owner to cases.">
<cfargument name="caseid" type="string" required="yes" default="">
<cfargument name="new_owner_user_id" type="string" required="yes"
default="">
<cfargument name="application_id" type="numeric" required="yes"
default="2">
<cfargument name="form_id" type="numeric" required="yes"
default="2">
<cfscript>
var dataStruct = structNew();
dataStruct.data = '';
dataStruct.error = '';
</cfscript>
<cfset new_owner_username = #qryNewOwner.username#>
This cfset above is using a function on this page to get the username
information. Can i use the injectMethod function to pass into this
page the new_owner_username info, or maybe because this is a variable,
can i use injectProperty?
these are new functions to me (just found them in documentation), so
not sure where they are best suited?
thanks
dan
--
You received this message because you are subscribed to the Google Groups "mxunit" group.
To post to this group, send email to mxu...@googlegroups.com.
To unsubscribe from this group, send email to mxunit+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/mxunit?hl=en.