[flexcoders] class mapping loaded XML data to strongly typed AS objects

2009-09-30 Thread asherritt9
Hi. Working on a project that is using XML as data source exclusively. I'd like to class map to AS objects automaticlly. I found these 2 articles: http://blog.misprintt.net/?p=192 http://blog.flexexamples.com/2007/09/19/converting-xml-to-objects-using-the-flex-simplexmldecoder-class/ which

[flexcoders] More DataBinding problems

2007-06-01 Thread asherritt9
So I have a singleton object holding data that I've bound controls to. To make sure changes in the control affect the object's properties I've explictly bound the other way in the mxml. Problem is when I want to use the same page for Updating, one Binding is firing before the other and

[flexcoders] Data Binding Repeaters

2007-05-31 Thread asherritt9
Hi, Can anyone explain to me how to databind input text boxes and other data entry controls in REPEATERS so that input changes in the UI propogate to the object in the array? Thank you. -Anthony

[flexcoders] Data Binding problem SOLVED!!!!

2007-05-24 Thread asherritt9
So simple yet a big headache. You MUST conclude each line of a [Bindable] variable decleration with a semicolon, otherwise it throws errors. [Bindable] var collection1:ArrayCollection = new ArrayCollection; [Bindable] var collection2:ArrayCollection = new ArrayCollection; [Bindable] var

[flexcoders] DATA BINDING giving me a hell of a time. Need help ASAP

2007-05-24 Thread asherritt9
Hey guys. I'm having a lot of problems with databinding. I've tried both Meta Tags and mxml tags and it's still a problem. I have a list of Array Collections I need to bind to, but it will only let me declare one [Bindable] tag. All subsequent declerations give me a compile time error.

[flexcoders] Proper setup of a Flex Data Services 2 application, with Java files

2007-05-20 Thread asherritt9
Hi everyone. I'm currently working on a project that uses Flex Data Service against a Java Hibernate-MySQL backend hosted on Tomcat 5.5. It's been a really long, hard road. Another develper is taking care of the backend in a mostly Java project. What is the best method to create the Flex

[flexcoders] Re: accordion initialization

2007-05-19 Thread asherritt9
--- In flexcoders@yahoogroups.com, li.wen [EMAIL PROTECTED] wrote: Hello all, For accordion component, its views do not need to initialize when they are switched to. However, what can I do if I want to initial those views which are not switched to? Regards, Joe You need to change the

[flexcoders] Having really tough time with Data Services [EMAIL PROTECTED]!!

2007-05-18 Thread asherritt9
Finally figured out how to get dataservice.getItem() to work. I've bound it's result to a textInput, but changes to the interface are not affecting the DataService on commit. Does any one have a sample work flow for getting then updating data? Thanks -A