Re: [flexcoders] Help need to update datagrid value dynamically

2007-04-15 Thread shaun etherton
Hi, Vinoth Babu wrote: Hi All, I have a datagrid, data's are from external XML file. Once .swf file is created. I changed few values in XML reopend .swf file, it's not updating. The values are updating if .mxml is recompiled. by just reopening the .swf file, the data's must update

[flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread shaun etherton
Hi, I'm having some trouble with a datagrid item editor and renderer. I think I must have missed something obvious. I have a datagrid with editable cells which are bound to Number-like properties of an object. I want to display these values using the CurrencyFormatter. I want to edit these as

Re: [flexcoders] custom datagrid item render not seeing changes made by custom datagrid item editor

2007-04-12 Thread shaun etherton
; } override public function validateProperties():void{ super.validateProperties(); this.text = cformatter.format(text); } } } From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of shaun

Re: [flexcoders] Re: Flex and Yahoo Pipes

2007-04-09 Thread shaun etherton
joshspooning wrote: I see. That's weird Yahoo has set there cross-domain wide open. I'll look into the docs. Do you mean I mean I need to allow yahoo's domain? --- In flexcoders@yahoogroups.com, huangnankun [EMAIL PROTECTED] wrote: Its the security sandbox issue, read up the flex 2 docs

[flexcoders] Flex Builder 2 hotfix, error ResourceBundle:charts unable to resolve class

2007-04-03 Thread shaun etherton
Hi, Has anyone else experienced problems with charts after applying the FB hotfix? I'm getting an error that says: Unable to resolve a class for resource bundle:charts. This happens when I put a ColumnChart or a BarChart on a panel in design mode and compile. Some of the other charts work

Re: [flexcoders] Flex Builder 2 hotfix, error ResourceBundle:charts unable to resolve class

2007-04-03 Thread shaun etherton
Tom Chiverton wrote: On Tuesday 03 Apr 2007, shaun etherton wrote: After the update I had to reneter my serial numbers and copy the charts.swc file from the old sdk dir to the new sdk/framworks/lib dir as it is not in the hotfixes frameworks/lib dir. Could there be a separate hotfix

Re: [flexcoders] Re: Are Events OK in the MVC (S) pattern

2007-03-29 Thread shaun etherton
Paul DeCoursey wrote: [snip] Yes the model knows nothing about the controller, but the model can only tell the view the data has changed. Here is one scenario where the controller would need to know about the change as well. If the view needs to change to a different view based on the new

Re: [flexcoders] Are Events OK in the MVC (S) pattern

2007-03-28 Thread shaun etherton
Hi, Troy Gilbert wrote: Brett, Events are actually an a pretty fundamental component of an MVC implementation. Events are most often used by the model to notify the view and/or controller of changes (Observer pattern). Usually the model does not talk to the controller (see the diagram at

Re: [flexcoders] Global access in AS3

2007-03-28 Thread shaun etherton
Troy Gilbert wrote: [snip] That works for me. There's also a technique where you use an internal class (visible only within the AS source file) as a parameter to the constructor, thus causing the compiler to complain if anyone calls the constructor from outside that source file, but I find

Re: [flexcoders] Are Events OK in the MVC (S) pattern

2007-03-28 Thread shaun etherton
Troy Gilbert wrote: On 3/27/07, shaun etherton [EMAIL PROTECTED] wrote: Troy Gilbert wrote: Brett, Events are actually an a pretty fundamental component of an MVC implementation. Events are most often used by the model to notify the view and/or controller of changes (Observer pattern

Re: [flexcoders] ChangeWatcher question

2007-03-22 Thread shaun etherton
Peter wrote: Perhaps if I am a bit less verbose. 1.is having a few thousand watch listeners active on a few hundred object realistic? Have you considered using the PropertyChangeEvent? regards, shaun