📄 noteeditpopup.jsp
字号:
<%@ include file="/includes/header.jsp" %>
<%@ page import="com.sourcetap.sfa.account.*" %>
<jsp:useBean id="abstractNoteEP" class="com.sourcetap.sfa.note.AbstractNoteEP" scope="application" />
<jsp:useBean id="abstractNoteWEP" class="com.sourcetap.sfa.note.AbstractNoteWEP" scope="application" />
<!-- Display the Section and process events. -->
<%
String action = request.getParameter("action");
if ( action == null )
action = "";
if ( action.equals("insert") )
{
%>
<BODY onload="UpdateParentCloseWin()">
<%
}
%>
<script>
function UpdateParentCloseWin()
{
window.opener.location.href = window.opener.location.href;
window.close();
}
function updateForm() { }
function closeWin()
{
window.close();
}
function updateParent()
{
window.opener.location.href = window.opener.location.href;
}
</script>
<%
try {
out.write(
abstractNoteWEP.processEvents(
"NOTE_ATTACHMENT",
"NoteEditPopup",
userInfo,
request,
response,
delegator,
abstractNoteEP,
uiCache,
false)
);
if ( action.equals("insert") )
{
}
} catch (Exception e) {
e.printStackTrace();
}
%>
<%@ include file="/includes/footer.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -