JSF访问bean类中的html元素值

时间:2014-04-10 10:32:13

标签: java jsf jsf-2

我有一个JSF应用程序,我有一个组合框。

<h:selectOneMenu id="collectorType"
                           value="#{activityDataSource.object.type}"
                           rendered="#{empty activityDataSource.object.id}"
                           disabled="#{!sp:hasRight(facesContext, 'ManageApplication')}"
                           readonly="#{!sp:hasRight(facesContext, 'ManageApplication')}"
                           onchange="$('editForm:selectTypeButton').click();">
             <f:ajax event="change" 
                    execute="@this" 
                    render="dsTransformationRule dsCorrelationRule"
                    listener="#{activityDataSource.handleCollectorTypeChange}" />
            <f:selectItem itemValue="" itemLabel="#{msgs.select_collector_type}"/>
            <f:selectItems value="#{activityDataSource.collectorTypes}"/>
          </h:selectOneMenu>

我在bean类中获得了该组合框的选择值,如:

public void setSelectedTransformationRule(String transformationRule)
        throws GeneralException {
    String collectorType = (String) getRequestParam().get("editForm:collectorType");
}

我成功了。我通过组合框的ajax onchage事件调用此方法。

但是如果我尝试在不同的方法中获得相同的组合框值,我会得到空值。

public void handleCollectorTypeChange() throws GeneralException {
    String collectorType = (String) getRequestParam().get("editForm:collectorType");
}

任何帮助!

2 个答案:

答案 0 :(得分:3)

由于Process Events发生在Update Model Values之前,您可以从UIViewRoot中检索组件中的值,如下所示:

HtmlSelectOneMenu collectorTypeSelectMenu = (HtmlSelectOneMenu) FacesContext.getCurrentInstance().getViewRoot().findComponent("editForm:collectorType");
String collectorType = (String) collectorTypeSelectMenu.getValue();

答案 1 :(得分:1)

尝试在ajax调用中使用您需要的值处理属性进程和partialSubmit,如下所示:

<f:ajax event="change" 
   execute="@this" 
   render="dsTransformationRule dsCorrelationRule"
   process="@this, collectorType"
   partialSubmit="true"
   listener="#{activityDataSource.handleCollectorTypeChange}" />

在过程属性中,您可以使用更新的值来处理您需要处理的所有ID(就像您在屏幕上看到的那样。