RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
Try "kingdoms_cb.selectedItem.value.toString()" -Daman -Original Message- From: pmarstonuoa [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 10:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject H

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
Try "kingdoms_cb.selectedItem.value.toString()" -Daman -Original Message- From: pmarstonuoa [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 10:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject H

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Philippe Maegerman
I got it working fine the old school way   http://www.macromedia.com/2003/mxml">   Philippe Maegerman   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pmarstonuoaSent: vendredi 1 juillet 2005 16:26To: flexcoders@yahoogroups.comSubject: [flexcoders] Newbie can't

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Phil Marston
Cheers Daman, Can't seem to get that to work either. :-( I'm wondering . . .. in the Flash IDE there was a remoting debugger that would let me see what was getting passed back and forth - is there anything like that in the Flex IDE? Perhaps I need to put the remoting result into a Flex model

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Tracy Spratt
The [Object] object thing means you are trying to look at a complex object, which selectedItem returns. SelectedItem is not a value, as you might expect, but rather a reference to the row/node/object in the dataProvider that populated that particular list item. What you probably want is a property

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Tracy Spratt
find selectedItem in comboBox when dataProvider is remoteObject Cheers Daman, Can't seem to get that to work either. :-( I'm wondering . . .. in the Flash IDE there was a remoting debugger that would let me see what was getting passed back and forth - is there anything like that

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
erever you are running the flex server). Best -Daman -Original Message- From: Phil Marston [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 11:17 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remote

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Phil Marston
HI Philippe, Yes that works - when I use any of the documented examples it's fine, but I'm not absolutely clear what the structure of the dataProvider is, because it's the result object from a remoting call. All I know is that in a normal Flash MX movie I can use the object as a dataProvider fo

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Peter Farland
52 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject There are couple of ways I check the payloads going back and forth 1) Flex Builder IDE has the Network monitor (Last tab in the "Results" window) whi

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Phil Marston
Hi Tracy, What you've described is exactly where I've been looking. To be honest I'm not sure what the dataProvider looks like or what it is beyond being an 'object' - in the Flash MX IDE I could look at what was getting passed back and forth in the remoting debugger, but I'm not sure how to d

Re: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Phil Marston
Woo hoo! :-) The Net.Connection debugger did it and no one would've guessed what the dataProvider looked like! where I had {kingdoms_cb.selectedItem.label} in my remotingObject's method . . . . . . I needed {categories1.items[kingdoms_cb.selectedIndex].KINGDOM} thanks for all the help folks a

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Phil Marston
At 12:07 01/07/2005 -0400, you wrote: >Additional note for Daman's option 2.) > >After turning on remote-objects-debug in flex-config.xml, you'd either: > >a) Use the NetConnection Debugger.swf from the extras folder that ships >with Flex to watch AMF traffic as you did in Flash MX. That's my baby

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Gordon Smith
il Marston Sent: Friday, July 01, 2005 9:05 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject Hi Tracy, What you've described is exactly where I've been looking. To be honest I'm not sure

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Philippe Maegerman
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject At 12:07 01/07/2005 -0400, you wrote:>Additional note for Daman's option 2.)>>After turning on remote-objects-debug in flex-config.xml, you'd either:>>a)