I read since JavaFX 8 you can make use of TextFlow to highlight text. But I don't know how to use it for my TableView. In my controller class I've got this:
TableView<Person> tvPerson;
TableColumn<Person, String> tcName;
ObservableList<Person> personList;
tcName.setCellValueFactory(new PropertyValueFactory<Person, String>("name"));
tvPerson.setItems(personList);
and this is the content class:
public class Person {
private final SimpleStringProperty name = new SimpleStringProperty("");
public Person(String name) {
setName(name);
}
public String getName() {
return name.getValue();
}
public void setName(String t) {
name.set(t);
}
}
Thanks for help!
It's a bit late, but here is my solution (sure it's not "Best practice", but works for me and I haven't found anything better so far) in case someone steel need it. It's only some parts: I think so it's easier to understand in such case. Note that the column isn't editable. In order to make it editable you need to owervrite methods "startEdit", "cancelEdit" and "commitEdit" in "return new TableCell()" (it's out of this question theme).
Hope it would be helpful for someone.