This did not work for me in the windows simulator so I assume the device as well.
- this is how I got it to work, hide the background.
tableView = widget.newTableView
{
left = 0,
top = 300,
height = appGlobals.screenWidth-75,
width = appGlobals.screenWidth,
isBounceEnabled = false,
hideBackground = true,
backgroundColor = { 0.8, 0.8, 0.8 },
onRowRender = onRowRender,
onRowTouch = onRowTouch,
listener = tableViewListener,
}
- set the alpha on the row color
rowColor = { default={ 1, 1, 1, 0.2 }, over={ 1, 0.5, 0, 0.2 } },
tableView:insertRow(
{
fontSize = 85,
isCategory = false,
rowHeight = 150,
rowColor = { default={ 1, 1, 1, 0.2 }, over={ 1, 0.5, 0, 0.2 } },
lineColor = { 0.5, 0.5, 0.5 },
params = {catName = “” … categories[i].name}, – Include custom data in the row
})
Happy App Building.