liferay の aui ダイアログとして jsp ページを表示したいのですが、現時点では次のようにしています。
<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 ページを表示する方法はありますか?
これに関して何か助けていただければ幸いです!