Richfaces 模型面板无法在 commandButton/Link 中与更高版本的浏览器一起工作
我试图通过 Windows Vista 中的 CommandButton 调用模型面板 Mozilla Firefox:-Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.11) Gecko/20101012 Firefox/3.6.11 GTB7.1 (.NET CLR 3.5.30729)
当我单击 CommandButton 时,它会显示一个空白的白色页面,它看起来像浏览器正在搜索任何内容。并且没有任何 bean 调用,也没有任何异常出现,
<a4j:commandLink id="showItem" action="#{addCompWL.addCompanynavigation}"
onclick="Richfaces.showModalPanel('addWatchListCompanyPanel',{width:500, top:200});"
actionListener="#{addCompWL.addCompany}"
rerender="modalPanelDiv" value="Add Stock to Watch List">
<f:attribute name="companyId" value="#{navigationBean._company_id}"/>
<f:attribute name="companyName" value="#{navigationBean._companyName}"/>
<a4j:ajaxListener type="org.ajax4jsf.ajax.ForceRender" />
</a4j:commandLink>
我正在使用 jsf1.2、Richfaces3。 3.2.SR1、Preetyfaces3.0.2
谢谢
I m trying to call a model Panel through CommandButton in Windows Vista Mozilla Firefox:-Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.11) Gecko/20101012 Firefox/3.6.11 GTB7.1 (.NET CLR 3.5.30729)
When Ever i m clicking On the CommandButton IT is showing a blank white Page and its look like Browser Serching anything.and No any bean calling and also no any exception is coming
<a4j:commandLink id="showItem" action="#{addCompWL.addCompanynavigation}"
onclick="Richfaces.showModalPanel('addWatchListCompanyPanel',{width:500, top:200});"
actionListener="#{addCompWL.addCompany}"
rerender="modalPanelDiv" value="Add Stock to Watch List">
<f:attribute name="companyId" value="#{navigationBean._company_id}"/>
<f:attribute name="companyName" value="#{navigationBean._companyName}"/>
<a4j:ajaxListener type="org.ajax4jsf.ajax.ForceRender" />
</a4j:commandLink>
i m using jsf1.2,Richfaces3.3.2.SR1,Preetyfaces3.0.2
ThANKS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许在 Ajax 调用之后显示模态面板会更好?
其他一点:您有一个
rerender="modalPanelDiv"
。modalPanelDiv
到底是什么?是modalPanel
本身、包含modalPanel
的div
还是modalPanel< 内的
div
/代码>?Maybe it is better to display the Modal Panel after the Ajax call is made?
Other point: you have a
rerender="modalPanelDiv"
. What ismodalPanelDiv
exactly? Is it themodalPanel
itself, adiv
that contains themodalPanel
or adiv
inside themodalPanel
?