如何将参数值传递给a4j:jsFunction

时间:2012-01-02 14:32:20

标签: ajax jsf jsf-2 richfaces ajax4jsf

在我的页面上,我有一个按钮,可以在弹出窗口中打开一个项目列表。当我在列表中选择1项时,我想将项目的ID传递给我的第一页的后台。可能吗?它尝试使用a4j:jsFunctiona4j:param进行此操作,但它无法正常工作。

这是我的代码:

第1页:

<a4j:jsFunction name="renderGuarantor" render="guarantor" actionListener="#{prospectDetail.setNewGuarantor}">
  <a4j:param name="param1" assignTo="#{prospectDetail.newGuarantorId}" />  
</a4j:jsFunction>

popuppage:

<h:outputLink value="" onclick="window.opener.renderGuarantor(#{applicant.deposit_id});window.close();">
  <h:graphicImage style="padding:0 1px; border:0"  value="${path.staticRootUrl}images/confirm.gif"  alt="${msg.applicantslist_select}" title="${msg.applicantslist_select}"/>
</h:outputLink>

这是第一页的支持bean代码

private Integer newGuarantorId;
public void setNewGuarantor()  {
    guarantor = newGuarantorId;
}

public Integer getNewGuarantorId() {
    return newGuarantorId;
}

public void setNewGuarantorId(Integer newGuarantorId) {
    this.newGuarantorId = newGuarantorId;
}

在弹出窗口中选择我的backingbean中的方法时,会调用newGuarantorId为空,并且永远不会调用setNewGuarantorId

我的问题有解决方法吗?

3 个答案:

答案 0 :(得分:5)

嗯...这很奇怪,没有什么看起来有问题。没有回答你的问题,但尝试这个解决方法 - 而不是将值分配给guarantorId,将参数保持为<a4j:param name="param1"/>actionListener方法从请求中检索此param1为String param1 = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().‌​get("param1");。 然后将此参数转换为int并进一步利用它。这应该工作

答案 1 :(得分:4)

尝试从actionListener切换到action

<a4j:jsFunction name="renderGuarantor" render="guarantor" action="#{prospectDetail.setNewGuarantor}">
  <a4j:param name="param1" assignTo="#{prospectDetail.newGuarantorId}"/>  
</a4j:jsFunction>

建议阅读以下主题:a4j:jsFunction

答案 2 :(得分:1)

我想你可以试试这个:

<a4j:jsFunction name="renderGuarantor" render="guarantor" 
                actionListener="#{prospectDetail.setNewGuarantor(prospectDetail.newGuarantorId)}" />

在您的Managed bean中,将setNewGuarantor方法定义如下:

public void setNewGuarantor(int newGuarantorId)  {
   guarantor = newGuarantorId;
}