uiscreensectioninfoheader.jsp
来自「国外的一套开源CRM」· JSP 代码 · 共 42 行
JSP
42 行
<%@ include file="/includes/header.jsp" %>
<jsp:useBean id="uiFieldInfoWebEventProcessor" class="com.sourcetap.sfa.customization.UIFieldInfoWebEventProcessor" scope="application" />
<body onload="fixSize()">
<!-- Display the Section and process events. -->
<%
try {
out.write(
uiFieldInfoWebEventProcessor.processEvents(
"UI_SCREEN",
"UiScreenSectionInfoHeader",
userInfo,
request,
response,
delegator,
eventProcessor,
uiCache));
} catch (Exception e) {
e.printStackTrace();
}
String action = "";
if (request.getParameter("action")!=null) {
action = UIWebUtility.convertButtonAction(request.getParameter("action"), request);
}
%>
<script for='UiScreenSectionInfoHeader_UiScreenSectionInfo_sectionId_0' event='onchange()' language='JavaScript'>
sendDropDown(
'UiScreenSectionInfoHeader_UiScreenSectionInfo_attributeId_0',
'attributeId',
'description',
'com.sourcetap.sfa.ui.UIAttributeDropDown',
'sectionId',
this.value,
this.form,
'<%=action%>');
</script>
<%@ include file="/includes/footer.jsp" %>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?