如何从 javascript 显示 richPopupPanel 窗口
我有一个类似于下面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个?:
可能还有:
MAG,
米洛·范德泽
This?:
And possibly:
MAG,
Milo van der Zee
或者,如果您使用外部 javacript (myscript.js) 文件,您可以使用:
Or if you are using external javacript (myscript.js) file you could use: