我正在尝试从dataTable创建一个ModalPanel(RichFaces 4.5.1,MyFaces 2.2.6,Spring 3.1.1,Tomcat 7.0.27),但我不能。
modalPanel具有基于表中所选行显示的值。当我在commandLink中单击时,触发actionListener应该提供这些值(localidadeMB.carregarColecoes()
),但它不起作用,因为对bean的属性的引用为null(未由f:setPropertyActionListener
设置位于commandLink)。
缺少什么?
* page.xhtml
(...)
<f:view>
<h:form id="formConsulta">
<rich:dataTable id="tabela"
value="#{localidadeMB.getLocalidadesPorPalavra()}" var="loc"
rowKeyVar="row" rows="20" width="800px" render="scroller">
<rich:column>
(...)
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value=""/>
</f:facet>
<a4j:commandLink id="editlink" ajaxSingle="true"
oncomplete="#rich:component('modalEditarLocalidade')}.show()"
actionListener="#{localidadeMB.carregarColecoes}"
render="modalEditarLocalidade">
<h:graphicImage value="/img/edit.png"/>
<f:setPropertyActionListener value="#{loc}" target="#{localidadeMB.localidade}" />
</a4j:commandLink>
</rich:column>
</rich:dataTable>
</h:form>
<ui:include src="modalPanel.xhtml" />
* modalPanel.xhtml
<ui:composition>
<rich:popupPanel id="modalEditarLocalidade" autosized="true"
modal="false" resizable="false">
<f:facet name="header">
<h:outputText value="Alterar localidade" />
</f:facet>
<f:facet name="controls">
<h:graphicImage id="modalClosePNG2" value="/img/close1.png"
style="cursor:default;"
onclick="Richfaces.hideModalPanel('modalEditarLocalidade')" />
</f:facet>
<h:form>
<h:outputLabel value="Nome da localidade:" for="nomeLocalidade" />
<h:inputText id="nomeLocalidade"
value="#{localidadeMB.localidade.nome}" required="true"
immediate="true"/>
</h:inputText>
</h:form>
</rich:popupPanel>
</ui:composition>
* ManagedBean
private Localidade localidade;
public void setLocalidade(Localidade l){
this.localidade = l;
}
public void carregarColecoes(ActionEvent action){
System.out.println(localidade.getNome());
***** print NULL *****
}
答案 0 :(得分:1)
如果要先设置变量然后执行一个方法,则必须对该方法使用@action,首先执行actionListeners,但由于两个方法都是actionListeners,因此在变量之前执行localidadeMB.carregarColecoes
已设定。 (顺便说一句:h:commandLink没有&#34; ajaxSingle&#34;或&#34; oncomplete&#34;属性。)
答案 1 :(得分:0)
根据Makhiel和this link的建议,我决定了。
xhtml看起来像这样:
<a4j:commandLink id="editlink" ajaxSingle="true"
oncomplete="#{rich:component('modalEditarLocalidade')}.show()"
action="#{localidadeMB.carregarColecoes}"
render="modalEditarLocalidade">
<h:graphicImage value="/img/edit.png"/>
<f:setPropertyActionListener value="#{loc}"
target="#{localidadeMB.localidade}" />
</a4j:commandLink>
和ManagedBean是这样的:
public String carregarColecoes(){
(....)
}