[flexcoders] Re: Datagrid - Using and Editing Data From XMLListCollection

2009-06-12 Thread valdhor
You would need to add an event listener for the itemeditend event. Then grab the data that was edited and modify the dataprovider. --- In flexcoders@yahoogroups.com, azona26 azsl1326-em...@... wrote: I have an editable datagrid with data being populated from an XMLListCollection. I am

[flexcoders] Re: Datagrid - Using and Editing Data From XMLListCollection

2009-06-12 Thread azona26
Thanks for the help. I did try using an itemEditEnd eventlistener. The issue I was having was that the data value wasn't being changed it was still the original value. --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: You would need to add an event listener for the

[flexcoders] Re: Datagrid - Using and Editing Data From XMLListCollection

2009-06-12 Thread valdhor
It works for me... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=onCreationComplete() mx:Script ![CDATA[ import mx.controls.TextInput; import mx.events.DataGridEvent;

[flexcoders] Re: Datagrid - Using and Editing Data From XMLListCollection

2009-06-12 Thread azona26
Thanks. I will try your updateData function. I was trying to grab the data in a different manner. I believe I was using the following: private function endEdit(event:DataGridEvent):void { trace('event.itemRenderer.data - ' +