📄 demo15.jsp
字号:
<%@ page
buffer="none"
import="org.opencms.workplace.demos.list.*" %>
<%
// initialize the 1st list dialog
CmsListDemo15a wp1 = new CmsListDemo15a(pageContext, request, response);
// perform the list actions
wp1.displayDialog(true);
if (wp1.isForwarded()) {
return;
}
// initialize the 2nd list dialog
CmsListDemo15b wp2 = new CmsListDemo15b(wp1.getJsp());
// perform the list actions
wp2.displayDialog(true);
if (wp2.isForwarded()) {
return;
}
// write the content of 1st dialog
wp1.writeDialog();
// write the content of 2nd dialog
wp2.writeDialog();
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -