我有一个数据表,我希望在将鼠标悬停在表格中的列上时显示丰富的工具提示。
<t:column id="nameColumn">
<a4j:outputPanel layout="block">
<rich:toolTip direction="bottom-right" showDelay="300"
layout="block">
<a4j:actionparam name="index" value="#{child.index}"
assignTo="#{tableBean.currentTableRowIndex}" />
<h:outputText value="#{tableBean.currentTableRowIndex}"/>
</rich:toolTip>
<h:outputText value="#{child.name}" id="childName"
styleClass="gridCell" >
</h:outputText>
</a4j:outputPanel>
</t:column>
如果我使用mode =“ajax”工具提示中没有出现任何内容。实际上它应该显示行号。如果你能帮助我,那将是非常好的。此问题在v3.3.3
中答案 0 :(得分:0)
请确保您的代码位于表单标记
中