更新Iframe外部的组件

时间:2014-09-26 10:04:50

标签: jsf iframe primefaces

我想更新位于iframe外部的组件。我将从iframe内部的组件调用更新,并更新iframe外部的组件。我怎么能这样做?

<p:tabView id="tab_view" dynamic="true" cache="true" scrollable="true">

        <p:tab id="tab_1" title="Test">
            <iframe id="tab_frame"
                src="#{request.contextPath}/xxx/xxx.xhtml"
                width="100%" height="285px" style="border-width: 0px;" />
        </p:tab>
    </p:tabView>    

xxx.xhtml

<h:form id="testform">
    <p:commandLink value="Click here" action="#{controller.methodY()}" style="color:blue;" update="tab_view"/>
</h:form>

commandlink中的更新不起作用。如何更新我的tabview?

0 个答案:

没有答案