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: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.comYahoo! Groups Links
<*> To visit your group on the web, go to:<*> 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
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___

