0

我有一个数据表,我想在将鼠标悬停在表中的列上时显示丰富的工具提示。

<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 中

4

1 回答 1

0

请确保您的代码在表单标签内

于 2012-06-28T07:06:46.490 回答