Erik, Thanks for the help. I was wondering why my binding didn't seem to be working property, and yes, i dont' have typed objects in my collection, just an array of objects. Good to know. I've been trying to avoid typing the data coming back since that means updating it each time my structure changes (and I'm still in development), but even after going to production, I didn't want the burden of keeping up with a client class to reflect my data structures coming back...but maybe there is a reason now.
-rick --- In [email protected], EECOLOR <[EMAIL PROTECTED]> wrote: > > Hello, > > its not best practice to refresh the whole grid if only 1 row changed. If > the data in your array consists of instances of custom classes, make > sure the properties in the custom class are bindable. Bindable causes them > to broadcast an event if an item changes, which in turn will make sure the > datagrid will update that record. > > If the collection does not contain instances of a custom class but (for > example) instances of Object, these changes will not be recognised. In that > case you could use the "itemUpdated" mehod of the collection. This will > notify the view (in your case the datagrid) to update the single item. > > > Greetz Erik > -- 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: http://groups.yahoo.com/group/flexcoders/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

