Re: [flexcoders] Re: property editor component

2009-02-26 Thread Sefi Ninio
Hi Tracy, Thanks for the help and the code. I ended up implementing the component myself, as a container of multiple types of editors. Similar to what you implemented really, just with separate editors instead of states. On Wed, Feb 25, 2009 at 3:06 AM, Tracy Spratt tspr...@lariatinc.com wrote:

[flexcoders] Re: property editor component

2009-02-24 Thread Tracy Spratt
I don't know of a component, but i implemented a property editor several years ago. the core is the input item REnderer. Here is the code, maybe it will help Tracy mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* width=100% horizontalAlign=right verticalAlign=middle

[flexcoders] Re: property editor component

2009-02-24 Thread Tracy Spratt
Where will the dataProvider come from? --- In flexcoders@yahoogroups.com, Sefi Ninio sefi.ni...@... wrote: Okay, how about this: When defining a combo box as an itemEditor, and specifying the editorDataField - How can I specify the combo box dataProvider? I can use the model to bind a dp to

[flexcoders] Re: property editor component

2009-02-22 Thread Sefi Ninio
Okay, how about this: When defining a combo box as an itemEditor, and specifying the editorDataField - How can I specify the combo box dataProvider? I can use the model to bind a dp to the combobox, but I'd like to create a generic component that does not have dependencies on external models...