RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-11 Thread pablo podas
did you try refreshing the array collection or datagrid ? Alex Harui <[EMAIL PROTECTED]> wrote: My rule is: don’t use Bindable unless you absolutely need it. It adds overhead to your application. You’ll get warning if you try to bind to something that isn’t bindable and then you

RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Alex Harui
My rule is: don't use Bindable unless you absolutely need it. It adds overhead to your application. You'll get warning if you try to bind to something that isn't bindable and then you can decide how to deal with it. I use [Bindable] in prototypes, but I would use it more sparingly in real app

RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Alex Harui
Try removing [Bindable] from the data setter. I don't see where you are using it, and it autogenerates change detection logic that may prevent your setter from running since the comparision is done by reference From: flexcoders@yahoogroups.com [mailto:[EMAIL P

Re: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Johannes Nel
try dispatching a custom change event [Bindable (event='myEvent')] instead of just [Bindable] On Jan 2, 2008 11:59 AM, j_lentzz <[EMAIL PROTECTED]> wrote: > Just tried it, but no change. I could change the values and see it in > my editing locations, but they weren't reflected in the datagrid,