JSF值传递给函数Issue

时间:2018-09-10 16:41:18

标签: jsf

由于某种原因,提交时未调用我的函数。有人可以指出正确的方向吗?我有吸气剂和二传手。 我尝试了多种方法,但仍然没有成功

所以在后端,我有。         public int prdcTypeSelection = 00;

    public int getPrdcTypeSelection() {
        return prdcTypeSelection;
    }
    public void setPrdcTypeSelection(int prdcTypeSelection) {
        this.prdcTypeSelection = prdcTypeSelection;
    }

    public void effDateValueChange() {
                LOGGER.info("calling effDtChangeListenerMass");
                System.out.println("PrdTypeSelection"+getPrdcTypeSelection());

            }     

Front end

<ace:dialog widgetVar="effectDatePopup"
                width="455" height="180"
                header="Effective Date Popup"
                draggable="false"
                modal="true"
                closable="true"> 

                  <h:form id="efForm">
                        <h:outputText value="Effective Date Popup TEXT "
                              styleClass="blBlkText" />

                            <h:outputText value="#{paDefAdministrativeDataTableViewBean.paDefAdministrative.defaultEffDate}" style="width:55px;display:block;">
                            <f:convertDateTime pattern="MM/dd/yyyy"/>
                            </h:outputText>







                                            <h:outputText value="Product Type "/>
                                            <h:selectOneMenu value="#{paDefAdministrativeDataTableViewBean.prdcTypeSelection}">
                                            <f:selectItem itemValue="00" itemLabel="All" />
                                            <f:selectItem itemValue="03" itemLabel="03" />
                                            <f:selectItem itemValue="04" itemLabel="04" />
                                            <f:selectItem itemValue="07" itemLabel="07" />
                                            </h:selectOneMenu>




                                         <h:panelGrid style="margin-left: auto; margin-right: auto; text-align: left;" width="100">
                                         <h:commandButton id="submit" action="#{paDefAdministrativeDataTableViewBean.effDateValueChange}" value="Submit"/>
                                         </h:panelGrid>





                                       <h:panelGrid width="100%" style="text-align: right; top:20px;"> <h:commandButton value="Cancel" onclick="effectDatePopup.hide();"/>      </h:panelGrid>

                            </h:form>
        </ace:dialog>   

1 个答案:

答案 0 :(得分:0)

您的itemValue字段00、03、05等是字符串,请将prdcTypeSelection变量更改为字符串,或者从itemValue字段中删除第一个零。如果问题仍然存在,请将<f:ajax />添加到selectOneMenu组件。