Blame view

WebRoot/WEB-INF/jsp/sunvote/subject/en_subject_edit2.jsp 3.11 KB
54a5b6ad   jack   1.英文翻译
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
  <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  %>
  <!DOCTYPE html>
  <html lang="en">
  	<head>
  	<base href="<%=basePath%>">
  	<!-- 下拉框 -->
  	<link rel="stylesheet" href="static/ace/css/chosen.css" />
  	<!-- jsp文件头和头部 -->
  	<%@ include file="../../system/index/top.jsp"%>
  	<!-- 日期框 -->
  	<link rel="stylesheet" href="static/ace/css/datepicker.css" />
  	<link rel="stylesheet" href="static/css/edit.css" />
  </head>
  <body class="no-skin">
  <!-- /section:basics/navbar.layout -->
  <div class="main-container" id="main-container">
  	<!-- /section:basics/sidebar -->
  	<div class="main-content">
  		<div class="main-content-inner">
  			<div class="page-content">
  				<div class="row">
  					<div class="col-xs-12">
  					
  					<form action="subject/${msg}.do" name="Form" id="Form" method="post">
  						<input type="hidden" name="SCHOOL_ID" id="SCHOOL_ID" value="${pd.SCHOOL_ID}"/>
  						<input type="hidden" name="GRADE_ID" id="GRADE_ID" value="${pd.GRADE_ID}"/>
  						<div id="zhongxin" style="padding-top: 13px;">
  						<table id="table_report" class="table">
  							<tr>
  								<td style="width:75px;text-align: right;padding-top: 13px;">Course name:</td>
  								<td>
  									<select class="chosen-select form-control" name="SUBJECT_ID" id="SUBJECT_ID" data-placeholder="Enter the Course name">
  									<c:forEach var="item" items="${varList}">
66d02d57   jack   1.英文翻译(5)
41
  										<option value="${item.ID}">${item.ENAME}</option>
54a5b6ad   jack   1.英文翻译
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  									</c:forEach>
  								</select>
  								</td>
  							</tr>
  							<tr>
  								<td style="text-align: center;" colspan="10">
  									<a class="btn btn-mini btn-primary" onclick="save();">Save</a>
  									<a class="btn btn-mini btn-danger" onclick="top.Dialog.close();">Cancel</a>
  								</td>
  							</tr>
  						</table>
  						</div>
  						<div id="zhongxin2" class="center" style="display:none"><br/><br/><br/><br/><br/><img src="static/images/jiazai.gif" /><br/><h4 class="lighter block green">Submitting...</h4></div>
  					</form>
  					</div>
  					<!-- /.col -->
  				</div>
  				<!-- /.row -->
  			</div>
  			<!-- /.page-content -->
  		</div>
  	</div>
  	<!-- /.main-content -->
  </div>
  <!-- /.main-container -->
  
  
  	<!-- 页面底部js¨ -->
  	<%@ include file="../../system/index/foot.jsp"%>
  	<!-- 下拉框 -->
  	<script src="static/ace/js/chosen.jquery.js"></script>
  	<!-- 日期框 -->
  	<script src="static/ace/js/date-time/bootstrap-datepicker.js"></script>
  	<!--提示框-->
  	<script type="text/javascript" src="static/js/jquery.tips.js"></script>
  		<script type="text/javascript">
  	
  		//保存
  		function save(){
  			$("#Form").submit();
  			$("#zhongxin").hide();
  			$("#zhongxin2").show();
  		//	window.top.modal.remove();
  		}
  		
  		$(function() {
  			//日期框
  			$('.date-picker').datepicker({autoclose: true,todayHighlight: true});
  		});
  		</script>
  </body>
  </html>