fieldconfiguration-overviewfield.jsp

来自「找了很久才找到到源代码」· JSP 代码 · 共 23 行

JSP
23
字号
<%@ page import="org.opencms.workplace.tools.searchindex.*, org.opencms.jsp.CmsJspActionElement, org.opencms.workplace.list.A_CmsListDialog" %><%   CmsJspActionElement actionElement = new CmsJspActionElement(pageContext, request, response);  CmsOverviewFieldDialog wpWidget = new CmsOverviewFieldDialog(actionElement);  // perform the widget actions     wpWidget.displayDialog(true);  if (wpWidget.isForwarded()) {    return;  }   // Fields list  A_CmsListDialog listMappings = new CmsMappingsList(actionElement);        // perform the list actions   listMappings.displayDialog(true);  // write the content of widget dialog  wpWidget.writeDialog();  // write the content of list dialogs  listMappings.writeDialog();%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?