Description
@vlipovetskii commented on Thu Jun 13 2019
I leverage this code
var HasElement.tooltipsText: String? get() = element.getProperty("title") set(value) { element.setProperty("title", value) }
to set tooltipsText for the components e.g. button.
I want to explain why a button is disabled.
Unfortunately, tooltipsText is not displayed if the component (e.g. button) is disabled.
Please find the sample project https://github.com/vlipovetskii/vaadin-issue-0003-prj
and
screenshot
@pleku commented on Mon Jun 17 2019
It seems that the native button indeed shows the tooltip when disabled https://jsfiddle.net/pqx1cgsm/
If our Button
/ <vaadin-button>
works differently, then this issue should be in that particular component repository.
@vlipovetskii what components are you not seeing the tooltip in when using setEnabled(false)
from Flow ?
@vlipovetskii commented on Mon Jun 17 2019
This is Button / . How to move the issue to Button repository ?