[flexcoders] Flex 2 to Flex 3 migration problem - can't copy event.result from remote call

2008-04-22 Thread bobklhr
I'm using calls to ColdFusion to populate master detail pages. This works fine in Flex 2. In Flex 3, the remote call to populate the master datagrid works fine using the returned query results, but the call to get the details no longer works - I'm now getting an error #1009 - Cannot access a

[flexcoders] Flex 2 to Flex 3 migration problem - can't copy event.result from remote call

2008-04-22 Thread bobklhr
I'm using calls to ColdFusion to populate master detail pages. This works fine in Flex 2. In Flex 3, the remote call to populate the master datagrid works fine using the returned query results, but the call to get the details no longer works - I'm now getting an error #1009 - Cannot access a

[flexcoders] different object returned by other server

2007-12-17 Thread bobklhr
My application fails (error 1009) when it retrieves an object from our production CF server but works fine when it retrieves the same object from our testing CF server. From the ColdFusion side the generated objects appear to be identical. From the Flex side the returned objects appear to be

[flexcoders] Re: Error 1009 when running on different server

2007-12-12 Thread bobklhr
11, 2007 8:23 PM, bobklhr [EMAIL PROTECTED] wrote: My app has a master detail layout populated by remote calls to cfcs. The cfc returns a query for the master list and an object for the detail. This works fine on our development server. When I run this on our production server the query

[flexcoders] Error 1009 when running on different server

2007-12-11 Thread bobklhr
My app has a master detail layout populated by remote calls to cfcs. The cfc returns a query for the master list and an object for the detail. This works fine on our development server. When I run this on our production server the query is returned ok but I get an error 1009 when it tries to

[flexcoders] Re: setFocus stopped working

2007-08-25 Thread bobklhr
appeared. This is probably happening after your call to setFocus, thus negating its effect. First thing to try is to use callLater(focusManager.setFocus, [ recipeName ]); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bobklhr Sent

[flexcoders] how to link tables with CF/Flex App wizard?

2007-04-13 Thread bobklhr
I have 2 tables, orders and recipes. An Order can have multiple recipes. I can't figure out how to use the wizard to create a CRUD application that will link the 2 tables together. For my last attempt I created a master and detail page for Orders and a master and detail page for recipes. The