JSF RichFaces - 页面加载时如何显示 rich:modalPanel?

发布于 2024-11-26 22:08:34 字数 1258 浏览 1 评论 0原文

这正是我正在寻找的......我需要在页面加载结束时自动显示 rich:modalPanel 。

到目前为止,这是我的方法:

MAIN.XHTML

  <script type="text/javascript">
    function openPopUp(){
        if(#{rich:element('popUpAltaTrenesEstaciones')}.value == 'true'){

            #{rich:component('idAltaPlantillasTrenesEstacionesPop')}.show(); 
            return false;
        }
    }
  </script>

......

<a4j:include id="popUp" viewId="AltaPlantillasTrenesEstacionesPopUp.xhtml" />

......

    <a4j:outputPanel ajaxRendered="true">
     <h:inputText id="popUpAltaTrenesEstaciones"
     value="#{altaPlantillasTrenesEstaciones.showPopUp}"
     style="display:none;" />
    </a4j:outputPanel>

BACKING BEAN。 JAVA

    private boolean showPopUp;

    @PostConstruct
    public void init() {
     ...
    setShowPopUp(true);
}

POPUP.XHTML

    <rich:modalPanel id="idAltaPlantillasTrenesEstacionesPop" height="200"
    width="400" rendered="true">

    <a4j:form>
            ........
           </a4j:form>
     </rich:modalPanel>

我做错了什么???我还需要添加其他内容吗?

谢谢

That's exactly what I am looking for ... I need to show a rich:modalPanel automatically when the page has ended loading.

This is my approach so far:

MAIN.XHTML

  <script type="text/javascript">
    function openPopUp(){
        if(#{rich:element('popUpAltaTrenesEstaciones')}.value == 'true'){

            #{rich:component('idAltaPlantillasTrenesEstacionesPop')}.show(); 
            return false;
        }
    }
  </script>

.........

<a4j:include id="popUp" viewId="AltaPlantillasTrenesEstacionesPopUp.xhtml" />

.....

    <a4j:outputPanel ajaxRendered="true">
     <h:inputText id="popUpAltaTrenesEstaciones"
     value="#{altaPlantillasTrenesEstaciones.showPopUp}"
     style="display:none;" />
    </a4j:outputPanel>

BACKING BEAN. JAVA

    private boolean showPopUp;

    @PostConstruct
    public void init() {
     ...
    setShowPopUp(true);
}

POPUP.XHTML

    <rich:modalPanel id="idAltaPlantillasTrenesEstacionesPop" height="200"
    width="400" rendered="true">

    <a4j:form>
            ........
           </a4j:form>
     </rich:modalPanel>

WHAT AM I DOING WRONG??? DO I NEED TO ADD ANYTHING ELSE?

THANK YOU

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明月松间行 2024-12-03 22:08:35

有“showWhenRendered”属性或类似属性。

There is 'showWhenRendered' attribute or similar.

东北女汉子 2024-12-03 22:08:35

您可能想调用您声明的函数 openPopup() ...

You might want to call the function openPopup() you have declared ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文