Re: us...@flex.apache.org

2013-07-02 Thread Deepak MS
Great! That worked. When I received the data, i just updated the detailed data in the main collection, for specific item and this triggered set data within the renderer, where I handled the data display part. Thanks Jude : ) On Sun, Jun 30, 2013 at 8:52 PM, jude wrote: > Once you've recei

Re: us...@flex.apache.org

2013-06-30 Thread jude
Once you've received the data for the specific item find the item in the collection and call itemUpdate on it. var item:MyItem = findItemByID(id, collection); item.extraInformation = results.data; collection.itemUpdated(item); // when you're done you may need to call refresh collection.refresh()

us...@flex.apache.org

2013-06-27 Thread Deepak MS
Hi there, Just wanted to know if there is a better way to listen for an event in an itemrenderer. I’m working on a mobile app, which uses sqlite database and cairngorm framework. I have a list in my view which has my CustomRenderer.as as it’s itemrenderer. This renderer initially loads bas