[Seaside] Re: Following chapter 12.2 and encountering difficulties with my interpretation of

Fritz Schenk intrader.intrader at gmail.com
Fri May 6 04:08:41 UTC 2011


Found excellent help in the vwnc mailing list. Most helpful folk explaining 
many of the intricacies of programming with Smalltalk.
I had an error in my solution. The correct solution is
<code>
editContact: aContact
	| copy |
	copy := aContact copy.
	(editor contact: copy) onAnswer: [ :answer |
	"copy has been updated - keep update if Save"
	answer ifTrue: [MyContact removeContact: aContact; addContact: copy.
			] 
]
</code>



More information about the seaside mailing list