I’ve implemented a table view in my racing app to list out the various tracks the driver has raced, along with some stats. When I scroll up, however, it seems that the top entry in the table only gets clipped when the bottom of that row passes the y value specified as the “top” of the tableview.
You can see the effect in this short video:
http://mikesellsoftware.com/wp-content/uploads/NoMaskTable.mov
I thought using a mask file would fix this, but it only seems to decrease the alpha of that first row as it fades into the sunset.
http://mikesellsoftware.com/wp-content/uploads/NoMaskTable.mov
I’m using build 813. Any ideas? I’m creating my table like this. top=92 refers to the bottom of that green line in the header.
local list = widget.newTableView{
top = 92,
width = 480,
height = 230,
bgColor = UI.BLACK,
maskFile = "images/mask480x230.png"
}
[import]uid: 58455 topic_id: 26346 reply_id: 326346[/import]