-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathGrid.html
29 lines (27 loc) · 1.03 KB
/
Grid.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azure Sample Web</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href="css/jquery-ui.css" rel="stylesheet" />
<link href="css/ui.jqgrid.css" rel="stylesheet" />
</head>
<body>
<div class="container body-content">
<div class="row">
<div class="col-md-12">
<table id="jqGrid"></table>
<div id="jqGridPager"></div>
</div>
</div>
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-2.1.4.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/jquery.jqGrid.min.js"></script>
<script src="js/grid.locale-tw.js"></script>
<script src="js/demo.js"></script>
</body>
</html>