⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contactheader.jsp

📁 国外的一套开源CRM
💻 JSP
字号:
<%@ include file="/includes/header.jsp" %>
<%@ page import="com.sourcetap.sfa.contact.*" %>
<jsp:useBean id="contactWebEventProcessor" class="com.sourcetap.sfa.contact.ContactWebEventProcessor" scope="application" />
<jsp:useBean id="contactEventProcessor" class="com.sourcetap.sfa.contact.ContactEventProcessor" scope="application" />

<body onload="fixSize()">
<!-- Display the Section and process events. -->
<%
try {
	out.write(
		contactWebEventProcessor.processEvents(
			"CONTACT",
			"ContactHeader",
			userInfo,
			request,
			response,
			delegator,
			contactEventProcessor,
			uiCache,
			false)
		);
} catch (Exception e) {
	e.printStackTrace();
}

String action = "";
if (request.getParameter("action")!=null) {
	action = UIWebUtility.convertButtonAction(request.getParameter("action"), request);
}
%>

<!-- Use the hidden iFrame to  update the Assigned To dropdown based on the account selected.-->
<script for='ContactHeader_Contact_accountId_0' event='onchange()' language='JavaScript'>
	sendDropDown(
		'ContactHeader_Contact_reportsTo_0',
		'contactId',
		'firstName;" " ;lastName',
		'com.sourcetap.sfa.ui.UIContactDropDown',
		'accountId',
		this.value,
		this.form,
		'<%=action%>');
	searchAgain(this, this.form);
</script>

<script for='ContactHeader_Address_country_0' event='onchange()' language='JavaScript'>
	sendDropDown(
		'ContactHeader_Address_state_0',
		'codeId',
		'codeValue',
		'com.sourcetap.sfa.address.StateDropDown',
		'country',
		this.value,
		this.form,
		'<%=action%>');
</script>


<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

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