隐藏字段值为空

时间:2013-08-30 22:22:33

标签: jsf-2 icefaces icefaces-3

我正在尝试将隐藏字段值设置为请求范围中的支持bean但我看到setter采用的值为空“”虽然在客户端有一个值(可以在firebug中看到)。在调用actionListener之前,调用setter但plan的参数为空。

<managed-bean>
    <managed-bean-name>carController</managed-bean-name>
    <managed-bean-class>com.domain.myproject.controller.CarController</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
        <property-name>plan</property-name>
        <value>#{param.planUI}</value>
    </managed-property>
</managed-bean>


public class CarController {
     private String plan = "";
// getter and setter
}

main.xhtml

<h:form id="myForm">
    <input type="hidden" name="planUI" id="planUI" value=""/>
....
<ice:panelGroup>
  <ice:menuPopup id="popupmenu">
    <ice:menuItem id="item1" value="item" immediate="true" 
   onclick="document.getElementById("myForm:planUI").Value = 'test';"
    actionListener="#{someBean.listener}">
    </ice:menuItem>
  </ice:menuPopup>
</ice:panelGroup>

1 个答案:

答案 0 :(得分:0)

您调用的方法存在问题,只需将onlclick更改为以下内容。

onclick="document.getElementById('myForm:planUI').value = 'test';"

你应该在双引号内使用单引号,并使用小 v v alue