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 {
       
        public var dummyVar: int;       
        public var anotherDummyVar : String;
       
        public var _uid:String;
           
        public function get uid():String
        {
            return _uid;
        }
       
        public function set uid(value:String):void
        {
            _uid = value;       
        }       
    }
}

Oriol.

2006/7/30, pateyog <[EMAIL PROTECTED]>:
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: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
     [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/




__._,_.___

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




__,_._,___

Reply via email to