在 Vaadin Flow 14 中为“Select”小部件设置工具提示提示
Set tooltip hint for `Select` widget in Vaadin Flow 14
在 Vaadin 14.1 中,TextField
widget offers a setTitle
method. We can pass a string to that method, with the text appearing at runtime as a floating tooltip 用户悬停鼠标指针时的消息。
令人惊讶的是,Select
小部件缺少 setTitle
方法。
➥ 有什么方法可以获得相同的工具提示行为吗?
基本可以访问DOM,可以直接添加title
属性。例如
select.getElement().setAttribute('title', 'This is a title')
晚了,但 Vaadin 工具提示组件也是一个不错的选择。它现在已获得 Apache 许可。参见 Component Factory Tooltip for Vaadin 10+。
在 Vaadin 14.1 中,TextField
widget offers a setTitle
method. We can pass a string to that method, with the text appearing at runtime as a floating tooltip 用户悬停鼠标指针时的消息。
令人惊讶的是,Select
小部件缺少 setTitle
方法。
➥ 有什么方法可以获得相同的工具提示行为吗?
基本可以访问DOM,可以直接添加title
属性。例如
select.getElement().setAttribute('title', 'This is a title')
晚了,但 Vaadin 工具提示组件也是一个不错的选择。它现在已获得 Apache 许可。参见 Component Factory Tooltip for Vaadin 10+。