[flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue?

2007-11-13 Thread Brian
Thanks! I've tried it and am still having problems. Sorry for the newbie questions. You mentioned in the comments on your blog that you like to leave the resultFormat defaulted to Object. So then how do you construct your dataProvider? I'm confused because on one hand we're talking about handling

[flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue?

2007-11-13 Thread ben.clinkinbeard
Hi Brian, These days I usually want to end up with strongly typed objects, so I generally implement my VO classes so that they accept XML in their constructor. I pass the XML node to the constructor, throw a use namespace in there and then grab the properties I need from the XML. HTH, Ben ---

RE: [flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue?

2007-11-13 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Tuesday, November 13, 2007 1:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue? Hi Brian, These days I usually want to end up with strongly

RE: [flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue?

2007-11-13 Thread Tracy Spratt
: Tuesday, November 13, 2007 4:55 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue? I am concerned about this expression: ordMedXMLList = resultXML.child(OrdMedList); Why not: ordMedXMLList = resultXML.OrdMed

[flexcoders] Re: DataGrid not populating from XMLListCollection - namespace issue?

2007-11-12 Thread ben.clinkinbeard
This might help, hope it does. http://www.returnundefined.com/2006/07/datagrid-labelfunction-and-namespaces/ --- In flexcoders@yahoogroups.com, Brian [EMAIL PROTECTED] wrote: I've been trying to get a DataGrid populated from a WebService and having much trouble. I'm wondering if the issue