我希望在liferay中将jsp页面显示为aui对话框,目前我正在做这样的事情:
<portlet:renderURL var="editURL" windowState="<%= WindowState.MAXIMIZED.toString() %>" >
<portlet:param name="jspPage" value="/edit.jsp"/>
<portlet:param name="id" value="<%= id%>"/>
</portlet:renderURL>
<aui:script use="aui-dialog, aui-overlay-manager, dd-constrain">
var editDialogOptions = {
title: 'Dialog',
bodyContent: '',
centered: true,
group: 'default',
height: 400,
width: 400,
modal: true,
buttons: [
{
label: 'Cancel',
handler: function() {
this.close();
}
}
]
};
$("#btnEdit").on('click', function(event) {
var editFeelingDialog = new A.Dialog(
A.merge(editDialogOptions, {
title: 'Edit Product'
})
).plug(A.Plugin.IO, {uri: '<%= editURL %>'}).render();
});
</aui:script>
页面呈现,传入我的参数,但它包括整个控制面板和杂项信息,如我不想显示的退出链接和导航等。无论如何只显示edit.jsp页面而不显示其他所有内容?
我将不胜感激有关此的任何帮助!