Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-13 Thread Phil Marston
nobody any ideas? I'm begining to wonder if my dataObject needs to be something other than Object - the consol says I'm trying to bind to a class that is not an 'IEventDispatcher' - can anyone suggest a better class? Cheers, Phil Phil Marston wrote: > Hi > > I have a custom mxml component "Re

RE: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-13 Thread Tracy Spratt
Marston Sent: Tuesday, June 13, 2006 11:56 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem   nobody any ideas? I'm begining to wonder if my dataObject needs to be something other than Object - the consol says I'm trying to

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Phil Marston Sent: Tuesday, June 13, 2006 11:56 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem   nobody any ideas? I'm begini

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 09:00, Phil Marston wrote: > Can you suggest a type? You could make your own... -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered

RE: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Peter Farland
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Phil MarstonSent: Tuesday, June 13, 2006 11:56 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem nobody any ideas? I&#

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Should I have asked! OK where do I begin looking in to that? Is it just a case of public class myDataObject extends Object ??? or public class myDataObject extends IEventDispatcher ??? I'm guessing there's more, but I'm getting out of my depth without knowing where to look for more info .

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 14:07, Phil Marston wrote: > OK where do I begin looking in to that? Besides the docs :-) > Is it just a case of > public class myDataObject extends Object ??? Preaty much. I don't think you need to extend IDataProvider or anything. -- Tom Chiverton

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Tom Chiverton wrote: On Wednesday 14 June 2006 14:07, Phil Marston wrote: OK where do I begin looking in to that? Besides the docs :-) lol - the 1st place I tried :-P  I guess I'm just not searching the vast tome for the right thing!  :-( -- __

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 15:25, Phil Marston wrote: > lol - the 1st place I tried :-P I guess I'm just not searching the > vast tome for the right thing! :-( You can just declare the data provider as an inline array or something: http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhi

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Phil Marston
Yeah I know about that, but this is an object that I'm getting back from AMFPHP via remoting my Object looks like this;        [Bindable]             public var reviewList:Object={         reviewDate:null,             reviewer:null,             title:null,            

RE: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-14 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Phil Marston Sent: Wednesday, June 14, 2006 12:05 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem   Yeah I know about that, but this is an object that I'm getting back from A

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-15 Thread Tom Chiverton
On Wednesday 14 June 2006 17:04, Phil Marston wrote: > public var reviewList:Object={ . > public function onReviewsListResult( result : Array ) : void > { > reviewList = result; > } > Your result is declared in onReviewsListResult as

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-15 Thread Phil Marston
t: Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem   Yeah I know about that, but this is an object that I'm getting back from AMFPHP via remoting my Object looks like this;        [Bindable]             public var reviewList:Object={         revie

Re: [flexcoders] Flex 1.5 to Flex 2 migration - binding problem

2006-06-15 Thread Phil Marston
Thanks Tom :-) Tom Chiverton wrote: On Wednesday 14 June 2006 17:04, Phil Marston wrote: public var reviewList:Object={ . public function onReviewsListResult( result : Array ) : void { reviewList = result;