seniorSetConfirm.jsp
2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="weaver.general.Util" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<%
boolean allowInit = "true".equals(Util.null2String(request.getParameter("allowInit")));
%>
<html>
<head>
<link rel=stylesheet type=text/css href=/css/Weaver_wev8.css />
<style>
p{height:20px; line-height:20px;}
</style>
</head>
<body style="overflow:hidden;">
<div style="margin:30px 10px 10px 10px; height:40px;">
<div style="float:left; width:36px; padding-top:6px;">
<img src="/wui/theme/ecology8/skins/default/rightbox/icon_query_wev8.png" />
</div>
<div style="float:left;">
<p>确定要启用高级定制吗?</p>
<p>一旦启用,所有明细表均需调整为高级定制模式,且模板保存后不可再关闭</p>
</div>
</div>
<div style="margin:30px 10px 10px 46px; height:40px;">
<p>启用高级定制后,明细支持折行设置,可自定义设置行头、序号、合计等样式及位置,系统不再根据模板自动生成</p>
</div>
<div style="margin:40px 10px 10px 46px;">
<input type="checkbox" id="autoInit" <%=allowInit?"":"disabled" %> />
<span style="color:red;">初始化明细行全选、选中、行序号及合计</span>
<span style="position:relative; top:-2px;" class="e8tips" title="模板包含表头表尾标示且字段内容占单行,未添加明细行全选、选中、行序号及合计标记才允许勾选初始化">
<img src="/images/tooltip_wev8.png" align="absMiddle">
</span>
</div>
<div id="zDialog_div_bottom" class="zDialog_div_bottom">
<wea:layout needImportDefaultJsAndCss="false">
<wea:group context="" attributes="{'groupDisplay':'none'}">
<wea:item type="toolbar">
<input type="button" value="<%=SystemEnv.getHtmlLabelName(826,user.getLanguage())%>" class="zd_btn_submit" onclick="onConfirm();">
<input type="button" value="<%=SystemEnv.getHtmlLabelName(201,user.getLanguage())%>" class="zd_btn_cancle" onclick="onCancel();">
</wea:item>
</wea:group>
</wea:layout>
</div>
</body>
<script type="text/javascript">
jQuery(document).unbind("contextmenu").bind("contextmenu", function(e){
return false;
});
var dialog = window.top.getDialog(window);
function onConfirm(){
dialog.close(jQuery("#autoInit").attr("checked")+"");
}
function onCancel(){
dialog.close();
}
</script>
</html>