Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Britton
I don't think this is OT since Kelly mentioned it above, but concerning the column names being all uppercase, when calling the same method that returns a query as a webservice (using mx:WebService), the columns ARE uppercase.  Returning a query with RemoteObject, the column names are normal. I a

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Anderson
: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results? Your not doing the same thing   this is casting the object> categories = event.result as ArrayCollection;   this is creating new objects >categories = new ArrayCollection( event.result as

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Dave Carabetta
On 7/27/06, Mike Anderson <[EMAIL PROTECTED]> wrote: Hello Dave and All,   I checked out the Article and it worked!!   But I am confused why it worked...  In some respects, I thought I was doing the same thing - but just in a different way.  I was wondering if you could explain why one

RE: [Junk E-Mail - LOW] Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Shannon Hicks
- LOW] Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results? Your not doing the same thing   this is casting the object> categories = event.result as ArrayCollection;   this is creating new objects >categories = new ArrayCollection( event.result as Array);     -or-    

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Nimer
AIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Thursday, July 27, 2006 5:10:25 PMSubject: RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results? Hello Dave and All,   I checked out the Article and it worked!!   But I am confused why it worked...  In some respects, I thought I was do

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-27 Thread Mike Anderson
ehalf Of Dave CarabettaSent: Thursday, July 27, 2006 1:04 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results? On 7/27/06, Mike Anderson <[EMAIL PROTECTED]> wrote: Hello Shannon :)   Yes, I am doing precisely that.

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-27 Thread Dave Carabetta
On 7/27/06, Mike Anderson <[EMAIL PROTECTED]> wrote: Hello Shannon :)   Yes, I am doing precisely that.  I was trying to avoid posting code, but it's the easiest way to show you everything I am trying to do.  You can assume too, that yes I am bringing back a valid RecordSet from ColdFu

RE: [Junk E-Mail - MED] Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-27 Thread Shannon Hicks
does Flex 2.0 handle ColdFusion Query results? I don't know if this is still true with CF 7.0.2 but if I remembercorrectly CF returns column names in all uppercase.That might be why your columns in the datagrid don't display anything.--Kelly --No virus found in this incoming message

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-26 Thread Dekayd
I don't know if this is still true with CF 7.0.2 but if I remember correctly CF returns column names in all uppercase. That might be why your columns in the datagrid don't display anything. --Kelly -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.tx

RE: [Junk E-Mail - LOW] RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-26 Thread Shannon Hicks
e">"{categories}" width="100%" height="100%" borderStyle="none"> From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Shannon HicksSent: Thursday, July 27, 2006 12:17 AMTo: [EMAIL PROTECTED]ups

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-26 Thread Mike Anderson
s@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon HicksSent: Thursday, July 27, 2006 12:17 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results? When you get a query back from a CFC via the flexgateway, you should cast it

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-26 Thread Shannon Hicks
When you get a query back from a CFC via the flexgateway, you should cast it as an ArrayCollection right there...   someFunction(event:EventResult):void {     myArrayCollection = event.result as ArrayCollection; }   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf