0

私は次のようなピースコードを持っています

<p:growl id="noti-growl"/>
        <h:form id="login-form">
            <p:panel>
                <h:commandButton value="Đăng nhập" class="button-login" action="index">
                    <f:ajax execute="@form" render="noti-growl"/>
                </h:commandButton>
            </p:panel>
        </h:form>

そして、次のようなエラーを受け取りました

<f:ajax> contains an unknown id 'noti-growl' - cannot locate it in the context of the component j_idt9

説明してください。お手伝いありがとうございます

4

1 に答える 1

2

次のように、うなり声を独自の形式にするか

<h:form id="login-form">
   <p:growl id="noti-growl"/>
</h:form>

または、うなり声を別の形式で入力して、フルネームで更新する必要があります。

 <h:form id = "growlForm">    
  <p:growl id="noti-growl"/>
 </form>

 <h:form id="login-form">
        <p:panel>
            <h:commandButton value="Đăng nhập" class="button-login" action="index" update = ":growlForm:noti_growl">

        </p:panel>
    </h:form>
于 2013-08-01T09:40:30.707 に答える