Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/jsp/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java rich:工具提示似乎正在使用rich:datatable上的所有事件_Java_Jsp_Richfaces - Fatal编程技术网

Java rich:工具提示似乎正在使用rich:datatable上的所有事件

Java rich:工具提示似乎正在使用rich:datatable上的所有事件,java,jsp,richfaces,Java,Jsp,Richfaces,当我向下表添加rich:toolTip时,它会停止过滤器的工作,就好像工具提示正在使用该表触发的所有事件一样。有人知道为什么吗 该表正常工作,tableItem没有getToolTip方法。工具提示不会显示。我使用的是RichFaces 3.3.1 <rich:dataTable value="#{backingBean.itemList}" var="tableItem" rows="#{searchCriteria.numRowsToDispla

当我向下表添加rich:toolTip时,它会停止过滤器的工作,就好像工具提示正在使用该表触发的所有事件一样。有人知道为什么吗

该表正常工作,tableItem没有getToolTip方法。工具提示不会显示。我使用的是RichFaces 3.3.1

<rich:dataTable value="#{backingBean.itemList}"
                    var="tableItem" rows="#{searchCriteria.numRowsToDisplay}"
                    reRender="ds" id="searchTable" rowKeyVar="row"
                    >

                    <rich:column headerClass="smallFilter" sortable="true"
                        sortBy="#{tableItem.idAsInteger}" filterBy="#{tableItem.id}"
                        filterEvent="onkeyup">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.idColumnHeader}" />
                        </f:facet>
                        <h:outputText value="#{tableItem.id}" />
                        <rich:tooltip >
                            <h:outputText value="#{tableItem.tooltip}" />
                        </rich:tooltip >
                    </rich:column>
</rich:dataTable>
Richfaces chrome中的bug