Didn’t work for me either. Am I correct in thinking this only works for lists, not tableViews? This is my code:
local function getfilelistener(event) if (event.isError) then print( "Network error - download failed" ) elseif (event.phase == "began") then print( "Progress Phase: began" ) elseif (event.phase == "ended") then if event.response.filename then print( "loaded image "..event.response.filename ) --force re-render visible local y2 = tableView:getContentPosition() print("pos:"..y2) tableView:scrollToY({y=y2,time=0}) end end end
I’m currently looking at passing the onRowRender event as parameter to the network listener and call onRowRender(rowEvent) when phase==“ended”. Would that be correct?