0

我有属性“newItemInfo”的bean“RichFacesTreeNodeBean”,我用inputTextArea调用模式面板,它必须包含该属性的实际值,但它始终包含属性的第一个值。这是 index.xhtml 的一部分:

<rich:popupPanel id="editPanel">
    <h:form>
        <h:inputTextarea value="#{richFacesTreeNodeBean.newItemInfo}" />
        <!-- some buttons -->
    </h:form>
</rich:popupPanel>

和 RichFacesTreeNodeBean.java:

@ManagedBean
@ViewScoped
public class RichFacesTreeNodeBean {
     private String newItemInfo;

public String getNewItemInfo() {
    return newItemInfo;
}

如何解决这个问题?

4

1 回答 1

0
<h:form>
    <a4j:outputPanel layout="block" ajaxRendered="true"> 
         <h:inputTextarea value="#{richFacesTreeNodeBean.newItemInfo}" />
    </a4j:outputPanel>
</h:form>

有用。

于 2012-12-02T23:16:43.780 回答