📜  RichFaces Rich:工具提示

📅  最后修改于: 2021-01-08 12:49:32             🧑  作者: Mango

RichFaces

该组件提供了信息性的工具提示。我们可以在任何控件上附加工具提示,并且将鼠标指针悬停在控件上时会显示该提示。

我们需要为工具提示文本使用values属性,通常在鼠标指针悬停时显示。

样式类和皮肤参数

下表包含工具提示的样式类和相应的外观参数。

Class Function Skin Parameters Mapped CSS properties
.rf-tt It is used to define styles for the tool-tip itself. No skin parameters.
.rf-tt-loading It is used to define styles for the tool-tip when it is loading. No skin parameters.
.rf-tt-cnt It is used to define styles for the tool-tip content. No skin parameters.
.rf-tt-cntr It is used to define styles for the progressed portion of the progress bar. tipBorderColor
generalFamilyFont
generalSizeFont
border-color
font-family
font-size

在下面的示例中,我们正在实现组件。本示例包含以下文件。

JSF文件

// tool-tip.xhtml




ToolTip 








ManagedBean

// User.java

import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
@ManagedBean
@RequestScoped
public class User {
String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

输出: