The application displays certain information in the TableView. The text size in some fields is quite large, and not all the text is visible.
Please tell me how to make the tooltip appear with the contents of the line when you hover on a specific cell?
public class Controller{ @FXML TableView<DecisionMessageWrapper> tvNewMessages; @FXML TableColumn<DecisionMessageWrapper,Boolean> tcAdded; @FXML TableColumn<DecisionMessageWrapper,Number> tcNewId; @FXML TableColumn<DecisionMessageWrapper,String> tcNewName; public initData (ObservableList<DecisionMessageWrapper newMessages){ if (newMessages != null) { this.newMessages = newMessages; tcAdded.setCellValueFactory(param -> param.getValue().decisionProperty()); tcAdded.setCellFactory(CheckBoxTableCell.forTableColumn(tcAdded)); tcAdded.setEditable(true); tcNewId.setCellValueFactory(param -> param.getValue().getMessage().idProperty()); tcNewName.setCellValueFactory(param -> param.getValue().getMessage().nameProperty()); tvNewMessages.setItems(newMessages); } } }