[flexcoders] Re: HTTPService - save DataGrid data

2008-01-17 Thread markgoldin_2000
() or whatever to parse it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, January 16, 2008 11:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data

RE: [flexcoders] Re: HTTPService - save DataGrid data

2008-01-17 Thread Tracy Spratt
server platform? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Thursday, January 17, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data What if I want to send

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-16 Thread markgoldin_2000
: [flexcoders] Re: HTTPService - save DataGrid data But I need to send modified DataGrid's data: a dataProvider that was initially created in the service's Result event. --- In flexcoders@yahoogroups.com mailto:flexcoders% 40yahoogroups.com , Scott Melby smelby@ wrote: Mark

RE: [flexcoders] Re: HTTPService - save DataGrid data

2008-01-16 Thread Tracy Spratt
: [flexcoders] Re: HTTPService - save DataGrid data Yes, I am getting XML from tthe server. I am assigning data to DataGrid like this: o.dataProvider = XMLData; where XMLData is XMLList: var XMLData:XMLList = XML(resultXML).copy().someXml you can send the xml straight back to the server

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-16 Thread markgoldin_2000
it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, January 16, 2008 11:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data Yes, I am getting XML from tthe server. I am assigning data

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-16 Thread markgoldin_2000
() or whatever to parse it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, January 16, 2008 11:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-16 Thread markgoldin_2000
Of markgoldin_2000 Sent: Wednesday, January 16, 2008 11:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data Yes, I am getting XML from tthe server. I am assigning data to DataGrid like this: o.dataProvider = XMLData; where XMLData is XMLList: var

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-15 Thread markgoldin_2000
But I am not sure what exaclty I need to provide to the send method to post data back to server. --- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: Just re-read this and realized I may have mis-understood the question :) If you want to save data from grid back to server

Re: [flexcoders] Re: HTTPService - save DataGrid data

2008-01-15 Thread Scott Melby
Mark - You can make your backend code take whatever you like. The HTTPService.send will just post to a URL that you specify (based on url property). You can then pass params... here is an example. var params:Object = new Object(); params.changedItemID = 1; params.name = New Name;

[flexcoders] Re: HTTPService - save DataGrid data

2008-01-15 Thread markgoldin_2000
But I need to send modified DataGrid's data: a dataProvider that was initially created in the service's Result event. --- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: Mark - You can make your backend code take whatever you like. The HTTPService.send will just post

RE: [flexcoders] Re: HTTPService - save DataGrid data

2008-01-15 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, January 15, 2008 2:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService - save DataGrid data But I need to send modified DataGrid's data