Re: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
thanks. this works great. To make a copy use: newContact = ObjectUtils.copy( pendingContact ); - Kevin

RE: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Dimitrios Gianninas
:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Monday, March 26, 2007 1:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Two-Way Binding Solutions? I have trying to figure out how best to accomplish the two-way data binding needed for form entry. Here is what I thought would work, but it

RE: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Alex Harui
mx.utils.ObjectUtil. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Monday, March 26, 2007 11:52 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Two-Way Binding Solutions? i think my problem boils down to one of

Re: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
i think my problem boils down to one of object cloning. Does anyone have a good solution for deep cloning objects in AS3? Seems like this would be a pretty useful utility. - Kevin On Mar 26, 2007, at 1:50 PM, Kevin wrote: I have trying to figure out how best to accomplish the two-way d

[flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Kevin
I have trying to figure out how best to accomplish the two-way data binding needed for form entry. Here is what I thought would work, but it doesn't seem to: ON MODEL: I created two variables that hold my VO. model.pendingContact model.newContact The user clicks a button to get ContactVO da