RE: [flexcoders] Multiple values in a data model

2006-01-24 Thread Rob Rusher
What you want to use is the mx:Object instead of mx:Model. This example dynamically adds a new object to the mx:Object test each time the button is clicked. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns=* mx:Script ![CDATA[

RE: [flexcoders] Multiple values in a data model

2006-01-24 Thread Abdul Qabiz
I would use an array of objects to hold different entries. Send the array to backend for processing in one shot... public class BasicInformation { public var eventDate:String; //similarly other fields. public function BasicInformation(eventDate:String //, similarly other