I am trying to use a tableview for updating a small amount of data. To do this, I need to "mark" the rows with different colors, and "grey out" some of them when changes have been completed.
I have installed TableViewExtended, and after reading everything I can find in the forums and documentation have found out how to do everything I need provided I click on the rows that have to be changed - but I need to change some rows programmatically.
Is there any way at all to address an individual row, or cell, without clicking on it? I want to write something like:
But this isn't legitimate. Cellfactory in the TableViewExtension would also work except the only way I can find to address a cell is by clicking on it. I need to address it programmatically.
Any help appreciated!
I have installed TableViewExtended, and after reading everything I can find in the forums and documentation have found out how to do everything I need provided I click on the rows that have to be changed - but I need to change some rows programmatically.
Is there any way at all to address an individual row, or cell, without clicking on it? I want to write something like:
B4X:
tblview.Row(x).Style = "-fx-background-color: Cyan;"
Any help appreciated!