An update.

I added the following setter method:

<cffunction name="setAcronym" access="public" returntype="void"
output="false">
        <cfargument name="possible_acronym" type="string" required="true" />
        <cfif len(arguments.possible_acronym) EQ 0 >
                <cfset getTransferObject().setAcronym("") /><!--- I believe 
this is
what transfer should be doing anyway --->
        <cfelse>
                <cfset 
getTransferObject().setAcronym(arguments.possible_acronym) />
        </cfif>
</cffunction>

Now the object is loaded in a "dirty" state... but it is not
persisted. The problem now is that a user who is just looking at the
data while another is editing will see the Acronym EMPTY!!

What am I doing wrong?

-- 
Before posting questions to the group please read:
http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer

Try out the new Transfer ORM Custom Google Search:
http://www.google.com/cse/home?cx=002375903941309441958:2s7wbd5ocb8

You received this message because you are subscribed to the Google Groups 
"transfer-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/transfer-dev?hl=en

Reply via email to