META-INF.resources.select_template.jsp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.dynamic.data.mapping.web
Show all versions of com.liferay.dynamic.data.mapping.web
Liferay Dynamic Data Mapping Web
<%--
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
--%>
<%@ include file="/init.jsp" %>
<%
long templateId = ParamUtil.getLong(request, "templateId");
long classNameId = ParamUtil.getLong(request, "classNameId");
long classPK = ParamUtil.getLong(request, "classPK");
String eventName = ParamUtil.getString(request, "eventName", "selectTemplate");
DDMStructure structure = null;
long structureClassNameId = PortalUtil.getClassNameId(DDMStructure.class);
if ((classPK > 0) && (structureClassNameId == classNameId)) {
structure = DDMStructureLocalServiceUtil.getStructure(classPK);
}
%>
<%
Map data = new HashMap<>();
if (ddmDisplay.isShowConfirmSelectTemplate()) {
data.put("confirm-selection", Boolean.TRUE.toString());
data.put("confirm-selection-message", ddmDisplay.getConfirmSelectTemplateMessage(locale));
}
data.put("ddmtemplateid", template.getTemplateId());
data.put("ddmtemplatekey", template.getTemplateKey());
data.put("description", template.getDescription(locale));
data.put("imageurl", template.getTemplateImageURL(themeDisplay));
data.put("name", template.getName(locale));
%>
<%= HtmlUtil.escape(template.getName(locale)) %>
<%= HtmlUtil.escape(template.getName(locale)) %>
Liferay.Util.focusFormField(
document. searchForm. keywords
);
Liferay.Util.selectEntityHandler(
'# selectTemplateFm',
'<%= HtmlUtil.escapeJS(eventName) %>'
);