JSF <h:selectonemenu> valueChangeListener不起作用</h:selectonemenu>

时间:2012-07-27 00:56:55

标签: jsf selectonemenu valuechangelistener

嗨,我有一个像这样的jsp页面

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>title</title>
</head>
<body>
<f:view>
    <f:loadBundle basename="amdocs.gcreport.messages" var="msg" />
    <h:panelGrid columns="1">
        <h:outputLabel value="#{msg.environmens}"></h:outputLabel>
    </h:panelGrid>
    <h:panelGrid columns="1">
        <h:selectOneMenu id="selectEnv" value="#{gCAnalyzerController.envName}" onchange="submit();" valueChangeListener="#{gCAnalyzerController.envValueChange}" >
                <f:selectItems value="#{gCAnalyzerController.envs}" var="env" itemValue="#{env.name}"/>
        </h:selectOneMenu>  
    </h:panelGrid>
.
.
.

每当我更改此下拉列表框中的值时,应在bean类中调用函数envValueChange。但是当在IE中运行这段代码时我得到异常“错误:预期对象”,当试图在谷歌浏览器中调试时,我得到了以下异常。

未捕获的ReferenceError:未定义提交GCAnalyzerView.jsp:15 平变化

看起来javascript submit()没有在任何地方定义,所以页面无法加载它,任何人都可以告诉我应该在哪里以及如何实现这个javascript方法?

1 个答案:

答案 0 :(得分:1)

OP解决方案。

代码应包含在表单标记中以供提交。

<h:form>
    <h:panelGrid columns="1">
        <h:outputLabel value="#{msg.environmens}"></h:outputLabel>
    </h:panelGrid>
    <h:panelGrid columns="1">
        <h:selectOneMenu id="selectEnv" value="#{gCAnalyzerController.envName}" onchange="submit();" valueChangeListener="#{gCAnalyzerController.envValueChange}" >
                <f:selectItems value="#{gCAnalyzerController.envs}" var="env" itemValue="#{env.name}"/>
        </h:selectOneMenu>  
    </h:panelGrid>
</h:form>