I’m using 934 (10.12) and I"m seeing row divider lines at random times even though I have noLines=true. I also have noBackground = true and I get row backgrounds all the time. I sometimes get more tableRows than I expect. I’ll insert two rows and get a 3rd. I don’t know how:
for i = 1, 2 do
-- code to insert the row
end
can end up trying to render row #3.
I’m not sure how if I know of a work around to get your row colors all the time, but if want to be rid of them, add these two lines in your onRowRender() call:
local row = event.target
local rowGroup = event.view
local id = event.index
print("on Row Render:", id)
rowGroup.background.isVisible = false
row.lineColor.isVisible = false
Okay it was more like 6 lines, but you probably have the others already.
[import]uid: 19626 topic_id: 32159 reply_id: 128075[/import]