I have been asked if it's possible to select text in JavaFX 8 from labels? Since we use labels in headers, tables, etc for display of read only text, this becomes an issue for our users when they wish to copy and paste that information.
I was unable to find anything similar on this question.
i.e.
@FXML
private Label headerLabel;
Is there a way to allow that headerLabel to have it's text selected and copied with the mouse?
Is this possible? If not, any suggestions?
Thanks