在鼠标悬停在 p:toggleSwitch 上时如何添加文本。

huangapple go评论57阅读模式
英文:

How to add text on mouse hover for p:toggleSwitch

问题

我试图在打开/关闭 p:toggleSwitch 时添加一些文本。

<p:toggleSwitch showTooltip="true"  
title="启用/禁用属性"  
id="d_enable" onLabel="打开" offLabel="关闭"   
value="#{mybean.dEnabled}" />

我尝试过了,但它没有起作用。

英文:

I am trying to add some text while tuning on/off the p:toggleSwitch.

<p:toggleSwitch showTooltip="true"  
title="Enable/Disable Property"  
id="d_enable" onLabel="On" offLabel="Off"   
value="#{mybean.dEnabled}" />

I tried that but it's are not working.

答案1

得分: 2

你不能使用ToggleSwitch组件来实现这个。相反,将其与ToolTip组件结合使用,如下所示:

<p:toggleSwitch id="myToggleSwitch" .../>
<p:tooltip for="myToggleSwitch" value="My toggleSwitch tip"/>

而且,不要猜测属性,考虑使用可以帮助你使用现有属性的IDE,或者简单地阅读ToggleSwitch文档

英文:

You cannot do that using the ToggleSwitch component. Instead, combine it with a ToolTip component like:

<p:toggleSwitch id="myToggleSwitch" .../>
<p:tooltip for="myToggleSwitch" value="My toggleSwitch tip"/>

And, instead of guessing attributes, consider using an IDE which can assist you in using existing attributes, or simply read the ToggleSwitch documentation.

huangapple
  • 本文由 发表于 2023年4月6日 19:02:31
  • 转载请务必保留本文链接:https://go.coder-hub.com/75948767.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定