Re: [flexcoders] Re: Best Practice Question/Cairngorm Framework/VOs

2006-08-27 Thread Oriol Gual
HI Kenny,There is a much more easier way. I suppose you have your OptionVO in your model. Then you only have to do this:mx:List id='myList' change={model.optiopnvo = OptionVO(myList.selectedItem)}/ or whatever you want: mx:TextInput id=myText change={model.optionvo.propertie =

[flexcoders] RemoteObject with standalone app - how do I point to specific remote CF server?

2006-08-27 Thread Christopher
I am creating a standalone Zinc app with Flex 2 which will run off a DVD and connect to a CF server on the backend. I'm confused as to where within my Flex app I would set the url to point my RemoteObjects to a specific CF server. Any help would be greatly appreciated. -- Flexcoders

Re: [flexcoders] how to show/hide a line in a chart

2006-08-27 Thread Igor Costa
Hi thereJust put an id to each linechart you have thanat the mx:Scriptyou could also do that.public function mouseEvent(event):Void{// add the event here}LinecharId._visible = false; or lineCharId2._visible = true;Just thatAdding a button with a click event using the function for that.On

[flexcoders] Re: Best Practice Question/Cairngorm Framework/VOs

2006-08-27 Thread lostinrecursion
Ok, if you don't mind, I'd like to extend on that a little. Most of the LIst boxes allow for multiple selections. Since when I set the selectedItems property it stores an Array with Obj references (i.e. 0:N{label: 'blah', data: 'some data'}) - how can I extract only the data properties since that

[flexcoders] Cairngorm with DataServices - addItem() error

2006-08-27 Thread dreuimar
Hey everyone, I'm using a hacked ServiceLocator to return DataServices in Cairngorm. I have a command class that implements the Responder interface, and when I go to add a new Client VO to a filled collection, I need the onResult method called if successful. The result and fault event handlers

[flexcoders] Re: Collection View changes order on update

2006-08-27 Thread ssundke
Hey, does any one have any idea on this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Re: Collection View changes order on update

2006-08-27 Thread Ralf Bokelberg
Sounds like you are relying on the state of the itemrenderer. Whenever your data updates, your itemrenderer has to completely rebuild it's view. Cheers, Ralf. -- Ralf Bokelberg [EMAIL PROTECTED] Flex Flash Consultant based in Cologne/Germany On 8/27/06, ssundke [EMAIL PROTECTED] wrote: Hey,

[flexcoders] Can I create a stack of ICollectionViews?

2006-08-27 Thread Aldo Bucchi
Hi all, Is there a way to create a stack of ICollectionViews? So I can have a view of a view ( of a view... ) of a set of data. Each layer will then add it's own filtering and sorting over the underlying collection. Not sure on how to handle removals and adds from above though... Any ideas

[flexcoders] RESEND: Maven2 plugin for flex (maven-flex-plugin)

2006-08-27 Thread Christian Edward Gruber
[EMAIL PROTECTED] wrote: I don't know of any Maven plugin, but I'd be interested to know as well. From: lfontvielle we would like to know: 1. If any Maven plugins have been developed for flex ? 2. Would you be interested in a Maven plugin for Flex ? I am currently writing one as we

[flexcoders] flash version

2006-08-27 Thread Diego S. Guebel
Hi list,I'm dealing with a problem I'm sure was discussed before but I didn't find any record even googling.When I try to run an application from flex builder it fires a pop up that says:Flex Builder cannot locate the required version of the Flash Player. You may need blah blah... Installed

[flexcoders] Re: Building Flex 2 project with Maven

2006-08-27 Thread Christian Gruber
[EMAIL PROTECTED] wrote: I don't know of any Maven plugin, but I'd be interested to know as well. From: lfontvielle we would like to know: 1. If any Maven plugins have been developed for flex ? 2. Would you be interested in a Maven plugin for Flex ? I am currently writing one as we speak,

[flexcoders] Re: BUMP: any work-arounds? (DateField... BUG with DateChooser (picker) control)

2006-08-27 Thread barry.beattie
Can you subclass the DateField and rewrite the DateChooser pop up code? me? personally? rewrite the DateChooser? nope. I'm not an AS3 component programmer. got no idea how. I'm a CF/ASP.NET coder that's into using pre-built components to (eventually learn how to) build Flex-fronted apps.

Re: [flexcoders] Re: Collection View changes order on update

2006-08-27 Thread Jeremy Lu
This hit me before, end up I'm re-sorting the collection everytime it changed. (using the sorting function of collection) On 8/28/06, ssundke [EMAIL PROTECTED] wrote: Hey, does any one have any idea on this? -- Flexcoders Mailing List FAQ: