It is possible to show a Tooltip on a disabled Control?
I have the following code and this doesn’t work:
txt_searchText.setDisable(true); txt.searchText.setTooltip(new Tooltip("Message"));
Has anyone a solution for that problem?
Thx
Advertisement
Answer
The answer is no. Currently you cannot show a tooltip on disabled Node, for the simple reason that disabled Nodes do not receive any MouseEvents.
You can see the issue being raised in the official issue tracler here (require login) : https://javafx-jira.kenai.com/browse/RT-28850
One solution to your problem could be to wrap your Control into something else.
For example, put your control into another Control, like a SplitPane or a Label. Then you could apply your tooltip to that wrapper and disable your first control.