I'm trying to focus a cell and after change style with CSS, but it doesn't work good.
This is an example of my code:
Java :
table.getFocusModel().focus(tablePosition.getRow(), tablePosition.getTableColumn());
CSS:
.table-view .table-row-cell .table-cell:focused
{
-fx-border-width:1 1 1 1;
-fx-border-color: #FFEA00 #FFEA00 #FFEA00 #FFEA00;
}
This is an example of my code:
Java :
table.getFocusModel().focus(tablePosition.getRow(), tablePosition.getTableColumn());
CSS:
.table-view .table-row-cell .table-cell:focused
{
-fx-border-width:1 1 1 1;
-fx-border-color: #FFEA00 #FFEA00 #FFEA00 #FFEA00;
}