当我打电话时,我不明白为什么在我的 PrimeFaces 视图中
<f:setPropertyActionListener value="#{item}" target="#{tagController.current}" />
它从不调用支持的 bean tagController.setCurrent 方法。
我有以下观点:
<h:form id="tableForm" styleClass="form-horizontal">
<h:panelGroup id="dataPanel">
<p:dataTable value="#{tagController.lazyModel}"
lazy="true"
id="table"
var="item"
paginator="true"
rows="10"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="10,20,50" >
<p:column headerText="Name" sortBy="#{item.name}" filterBy="#{item.name}">
<h:outputText value="#{item.name}"/>
</p:column>
<p:column>
<p:commandLink id="testButton" update=":testForm:panel" process="@this">
<h:outputText value="Test" />
<f:setPropertyActionListener value="#{item}" target="#{tagController.current}" />
</p:commandLink >
</p:column>
</p:dataTable>
</h:panelGroup>
</h:form>
<br/>
<h:form id="testForm" styleClass="form-horizontal">
<p:panelGrid columns="4" id="panel" >
<h:outputLabel value="Name: #{tagController.current.name}" />
</p:panelGrid>
</h:form>
和以下支持的bean:
@ViewScoped
@Named
public class TagController implements Serializable {
@Inject
TagFacade tagFacade;
protected LazyDataModel<Tag> lazyModel;
protected ResourceBundle bundle = ResourceBundle.getBundle("resources/messages");
@Getter
protected Tag current = new Tag();
public void setCurrent(Tag current) {
System.out.println(">>>>>>>>>> THIS METHOD IS NEVER CALLED ? WHY ?");
this.current = current;
}
public LazyDataModel<Tag> getLazyModel() {
//... omitted for brevity
}
}
数据表运行良好,我看到数据、分页器、过滤器和排序运行良好,但是当我单击测试链接时没有任何反应(没有异常,没有 javascript 错误进入 html 页面,没有消息打印到标准输出......)。
我正在使用 Glassfish 3.1.2 / Mojarra 2.1.22 / PrimeFaces 3.5。
有人可以帮助我吗?
提前谢谢了...