codetabs.jsp

来自「国外的一套开源CRM」· JSP 代码 · 共 32 行

JSP
32
字号
<%@ page import="com.sourcetap.sfa.ui.UIScreenSection" %>
<%@ include file="/includes/header.jsp" %>
<%@ include file="/includes/tabControlWithIframes.jsp" %>
<%

	String codeTypeId = "";
	if(request.getParameter("codeTypeId") != null) {
		codeTypeId = request.getParameter("codeTypeId");
	}
	String codeId = "";
	if(request.getParameter("codeId") != null) {
		codeId = request.getParameter("codeId");
	}

	String parentCodeId = "";
	if(request.getParameter("parentCodeId") != null) {
		parentCodeId = request.getParameter("parentCodeId");
	}
//	if (parentCodeId.equals("") && !codeId.equals("")) parentCodeId = codeId;
%>
   <DIV id=oMTExplanation style="DISPLAY: none"><br></DIV>
   <DIV id=oMT  title="Code <%=codeId%> Details" style='width:100%;'>

    <!-- CodeChildCodeList -->
    <DIV  style="VISIBILITY: visible" tabName="Child Codes" targetURL="<ofbiz:url>/codeChildCodeList</ofbiz:url>?action=<%=UIScreenSection.ACTION_QUERY%>&parentCodeId=<%=parentCodeId%>">
    </DIV>

   </DIV>

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

⌨️ 快捷键说明

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