List View App

I’m new to development in Corona SDK. I’m trying to make List View Application. Data for the List View is loaded from an XML file over HTTP. Then successfully parsed and displayed in the list.
But I have a problem with the asynchronous loading of images in the list … Here’s the part of code:

[code]
callback = function( row )
local g = display.newGroup()
display.loadRemoteImage(row.imageLink, “POST”, networkListenerImage, row.imageName, system.TemporaryDirectory, 10, (row.period)*80)
function networkListenerImage(event)
if (event.isError) then
print (“Network error - download failed”)
else
print(“loaded”)
event.target.alpha = 0
transition.to( event.target, { alpha = 1.0 })
g:insert(event.target)
end
end

return g

end
[/code]May be need to use network.download? [import]uid: 75366 topic_id: 12758 reply_id: 312758[/import]