我在显示带有 JSF 1.2 和丰富面孔的模态面板时遇到问题。由于项目限制,我必须使用jsp。a4j commandLink 确实提交到服务器,它返回到浏览器,浏览器闪烁但没有显示。
这是我在我的jsp中使用的片段
....
....
<f:view>
....
....
<h:form id="buildForm">
....
....
<a4j:commandLink id="showItem" action="#{popupBean.selectAttributeAction}" oncomplete="Richfaces.showModalPanel('modalPanelId',{width:550, top:200});" reRender="modalPanelId">
Click Here!
</a4j:commandLink>
<rich:modalPanel id="modalPanelId" width="350" height="100">
<!-- the external content is loaded inside this tag -->
<div id="modalPanelResult">
This is test modal popup
</div>
</rich:modalPanel>
....
....
</h:form>
</f:view>
....
这是我在我的 jsp 中包含上述片段时得到的错误
panel.component is undefined
...,opts);});};Richfaces.hideModalPanel=function(id,opts,event){var panel=$(id);if(...
如果我在单独的 Test jsp(如下所示)中使用相同的东西 - 我创建它来测试,它工作正常。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
<a4j:commandLink id="showItem" action="#{popupBean.selectAttributeAction}" oncomplete="Richfaces.showModalPanel('modalPanelId',{width:550, top:200});" reRender="modalPanelId">
Click Here!
</a4j:commandLink>
<rich:modalPanel id="modalPanelId" width="350" height="100">
<!-- the external content is loaded inside this tag -->
<div id="modalPanelResult">
This is test modal popup
</div>
</rich:modalPanel>
</f:view>
</body>
</html>
谢谢,我感谢你们的任何帮助。我花了几天的时间努力做到这一点。我有另一个 css 解决方案,我在 a4j jsfunction 调用服务器后使用它来获取弹出窗口的信息并显示覆盖弹出窗口,但这在 Chrome 中不起作用,它在 IE 中起作用,在 jquery 脚本代码中出现脚本错误,而不是在我的代码中,但在 Firefox 中运行良好,那是当我切换到 Richfaces 解决方案时认为它看起来非常简单,但是一旦我在我的 jsp 中包含一个测试工作(在单独的页面上)解决方案,它就不起作用了。