我正在使用primefaces 5.0。
的index.xhtml:
Node.Next
上面的代码假设用leaf和root填充treetable,但现在只显示Name和Value
TreeTableManagedBean.java
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Prime tree</title>
</h:head>
<h:body>
<h:form style="width: 500px;">
<p:treeTable value="#{treeTableManagedBean.root}" var="node">
<p:column>
<f:facet name="header">
Name
</f:facet>
<h:outputText value="#{node.name}"></h:outputText>
</p:column>
<p:column>
<f:facet name="header">
Value
</f:facet>
<h:inputText value="#{node.value}"></h:inputText>
</p:column>
</p:treeTable>
</h:form>
</h:body>
</html>
我无法找出错误来源。