Re: [flexcoders] Using IUID

2006-07-31 Thread Oriol Gual
I didn't know it, thanks for the tip.2006/7/31, Jeremy Lu [EMAIL PROTECTED]: If your VO are bindable, chances are very high that you might not need to implement the IUID interface, it will be automatically done. Jeremy.On 7/31/06, Oriol Gual [EMAIL PROTECTED] wrote:

[flexcoders] Using IUID

2006-07-30 Thread pateyog
I am a newbie and was trying to understand how to use the iuid interface while using a datagrid that is being populated by a ArrayCollection fetching data from an xml using http service. Can any of you point me to an example Thanks -pateyog -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Using IUID

2006-07-30 Thread Oriol Gual
I have done it in a VO using Cairngorm, I suppose it won't be very different to you:package com.example.vo { import mx.core.IUID; import com.adobe.cairngorm.vo.ValueObject ; [RemoteClass(alias=com.example.vo.ExampleVO)] [Bindable] public class ExampleVO implements ValueObject, IUID {

Re: [flexcoders] Using IUID

2006-07-30 Thread Jeremy Lu
If your VO are bindable, chances are very high that you might not need to implement the IUID interface, it will be automatically done. Jeremy.On 7/31/06, Oriol Gual [EMAIL PROTECTED] wrote: I have done it in a VO using Cairngorm, I suppose it won't be very