Simple problem but I haven't managed to find a possible solution:
I have a list in Sencha Touch with Items generated through the itemTpl
property.
Now I want to go through the items (after they were rendered!) in the DOM and Replace their images (using imgCache for on-device-caching of images)
The Painted
event of the List doesn't help because it's fired before the Item-DOM is rendered.
EDIT:
My current solution is to override the internal updateListItem
method of the Ext.dataview.List
, call the original updateListItem
there and add there my additional functionality. Still looking for a better solution ...