Problem with table view row rendering

From build 759 I’m having a problem with the TableVIew widget.
Basically, my rows have a background image that I load in onRowRender, until 758 everything worked perfectly, but from 759 the current last visible row doesn’t show any image (a background image and other images loaded in the row group in the onRowRenderer function).
Only when I drag the table view and the row with the missing images is completely on the viewable area, the images in the row are visible.

The text elements in the rows have no problem and are always visible, so it’s a problem only for the images inside a row.

I’ve tried changing the renderThresh parameters and I can confirm it’s working, I mean, it’s calling the onRowRender functions for the row outside the view area, but unfortunately it’s still not rendering the images in the last visible row on the view area.

Any advice?
EDIT: My mistake, I’ve found the problem and it’s now fixed. When I added the rows to the table view with insertRow I used the parameter rowColor like this

rowColor={ 0, 0, 0,0 };   

don’t remember exactly why… but anyway, removing that line fix the problem. [import]uid: 9158 topic_id: 22992 reply_id: 322992[/import]

I fought with the same problem – it still seems like a bug that setting the rowColor to {0,0,0,0} would also affect the images in the row but not text elements. I also had this problem with lineColor (which should have even less to do with row content objects)!

In the end, I used the rowRender functions to set event.line.isVisible and event.background.isVisible to ‘false’ to achieve my goal of a transparent tableView. [import]uid: 44647 topic_id: 22992 reply_id: 92658[/import]