2
我需要從jsf中的另一個表單更新一個表單內容。如果我給出另一個表單id,它將顯示一個錯誤,如組件id未找到。從jsf中的另一個表單更新一個表單內容
我的編碼是
<h:form id="form1" name="form1">
<h:commandLink value="Tab1" id="Tab1">
<f:ajax listener="#{managedBean.tabChange}" event="click" render="form2"></f:ajax>
</h:commandLink></li>
</h:form>
<h:form id="form2" name="form2">
<h:outputText value="#{managedBean.text}" id="text"/>
</h:form>
在渲染屬性
@all爲我工作
。 但form2/text不起作用。
請幫幫我。
在此先感謝。
感謝您Response.It對我的作品.. – 2013-03-11 10:19:21