如何从 javascript 显示 richPopupPanel 窗口

发布于 2024-12-28 05:41:18 字数 1317 浏览 0 评论 0原文

我有一个类似于下面的 Rich PopupPanel 的代码。

代码:-

<rich:popupPanel id="simplePopup1" autosized="true" width="300"
height="60" moveable="true" resizeable="false" zindex="100"
onmaskclick="#{rich:component('simplePopup1')}.hide()">
<f:facet name="header">
<h: outputText value="Popup" />
</f:facet>
<f:facet name="controls">
<h: outputLink value="#"
    onclick="#{rich:component('simplePopup1')}.hide(); return false;">
X
</h: outputLink>
</f:facet>
<a4j:region>
<a4j: outputPanel ajaxRendered="true">
<h:form ajaxSubmit="true">
<h:panelGrid columns="1">
<a4j:commandLink action="#{popupBean.eventHandler.onClose}"
value="close" immediate="true" />
</h:panelGrid>
</h:form>
</a4j: outputPanel>
</a4j:region>
</rich:popupPanel>

我可以使用 a4j:commandbutton 使此弹出窗口可见。但我想使用 javascript 代码显示此弹出窗口。

任何人都有任何想法,如何实现这一目标。

我一直在尝试使用下面的代码,但它不起作用。

<a4j: outputPanel>
<script type="text/javascript">
javascript:document.getElementById('simplePopup1').style.display = 'none'; //or         javascript:rich:component('simplePopup1')}.show();
</script>
</a4j: outputPanel>

注意:- 我正在使用 RF4.0 和 JSF2.0 以及 JBoss6.1 谢谢 贾克拉特·辛格

I have one code like below of Rich PopupPanel.

Code:-

<rich:popupPanel id="simplePopup1" autosized="true" width="300"
height="60" moveable="true" resizeable="false" zindex="100"
onmaskclick="#{rich:component('simplePopup1')}.hide()">
<f:facet name="header">
<h: outputText value="Popup" />
</f:facet>
<f:facet name="controls">
<h: outputLink value="#"
    onclick="#{rich:component('simplePopup1')}.hide(); return false;">
X
</h: outputLink>
</f:facet>
<a4j:region>
<a4j: outputPanel ajaxRendered="true">
<h:form ajaxSubmit="true">
<h:panelGrid columns="1">
<a4j:commandLink action="#{popupBean.eventHandler.onClose}"
value="close" immediate="true" />
</h:panelGrid>
</h:form>
</a4j: outputPanel>
</a4j:region>
</rich:popupPanel>

I am able to make this popup visible using the a4j:commandbutton. But instead of that, I want to show this popup window using the javascript code.

Anyone have any idea, how to achieve that.

I have been trying with below code but its not working.

<a4j: outputPanel>
<script type="text/javascript">
javascript:document.getElementById('simplePopup1').style.display = 'none'; //or         javascript:rich:component('simplePopup1')}.show();
</script>
</a4j: outputPanel>

Note:- I am using RF4.0 and JSF2.0 with JBoss6.1
Thanks
Jaikrat Singh

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

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

发布评论

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

评论(2

小矜持 2025-01-04 05:41:19

这个?:

#{rich:component('simplePopup1')}.show() 

可能还有:

<script>
    function showPopup() {
        #{rich:component('simplePopup1')}.show();
    }
</script>

MAG,
米洛·范德泽

This?:

#{rich:component('simplePopup1')}.show() 

And possibly:

<script>
    function showPopup() {
        #{rich:component('simplePopup1')}.show();
    }
</script>

MAG,
Milo van der Zee

笑红尘 2025-01-04 05:41:19

或者,如果您使用外部 javacript (myscript.js) 文件,您可以使用:

function openDialog() {
    RichFaces.$("simplePopup1").show();
}

Or if you are using external javacript (myscript.js) file you could use:

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