One approach would be to to use model objects as a third party: you deserialize the xml into an object (more correct, a tree like structure of objects), use it to bind data onto the form view, make the changes on the object then deserialize in into XML. This way you do not deal with xml except when you read the object at beginning and save it at the end. Also, if you decide you want something else rather than xml you make the change at the serialization level rather than in your views. You can use an xml marshalling library to help you render and parse the xml automatically (like FlexXB - http://code.google.com/p/flexxb) or you can do it by hand.
Alex --- In [email protected], "chaituchowdary85" <chaituchowdar...@...> wrote: > > Hi Guys, > > I am working on a flex form in which i have to read feeds from an XML > file and show it in the form and after updating the form i need to push the > new values into the XML again. > > Can anybody guide me on how to do this task. Thank you in advance!! >

