在 ALLOY DIALOG 中渲染 JSP
我在 Liferay 6.0.5 中使用 ALLOY DIALOG,如下所示:
function countPopup(){
AUI().use('aui-dialog', 'liferay-portlet-url', function(A) {
var dialog = new A.Dialog({
title: 'Upload Details',
centered: true,
modal: true,
width: 500,
height: 400,
bodyContent:"testing",
}).render();
});
}
我进入弹出窗口“testing”。但我想转发到一个 jsp 文件,而不是“bodycontent”,我在其中编写了一些逻辑。怎么做呢?
I am using ALLOY DIALOG in Liferay 6.0.5 as follows:
function countPopup(){
AUI().use('aui-dialog', 'liferay-portlet-url', function(A) {
var dialog = new A.Dialog({
title: 'Upload Details',
centered: true,
modal: true,
width: 500,
height: 400,
bodyContent:"testing",
}).render();
});
}
I am getting in popup " testing ". But Instead of "bodycontent" I want to forward to one jsp file where i have written some logic. How to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须“插入”另一个模块才能向 a.Dialog 提供所需的文章。
尝试一些这样的:
You must "plug" another module to feed a.Dialog with article desired.
Try some like this:
我知道现在回答这个问题已经太晚了,但这是解决方案。
这将在弹出窗口中打开给定的 jsp 页面。
I know this is too much late to give answer to this question but here is the solution.
This will open the given jsp page in to popup.