forked from marzsocks/ipgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
57 lines (43 loc) · 1.33 KB
/
demo.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
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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="scripts/jquery-ui-1.9.2.custom.min.js"></script>
<script src="scripts/ip.grid.js"></script>
<link href="css/ip.grid.css" rel="stylesheet" />
<script>
$(document).ready(function () {
$('#demo').ip_Grid({ rows: 10000, cols: 26 });
});
</script>
<style>
body {
font-family: Arial;
color: white;
background-color: #3d3d3d;
margin: 0;
padding: 60px;
position:relative;
}
a { color:#46b3ff; text-decoration:dotted; }
.gridContainer {
position:relative;
width:700px;
height:500px;
}
#demo {
width:100%;
height:100%;
}
</style>
<title>ip.grid demo</title>
</head>
<body>
<h1>Spreadsheet Demo</h1>
<p>Your sheet must be placed inside a relative container.</p>
<div class="gridContainer">
<div id="demo"></div>
</div>
<p>For more usage examples and documentation please <a href="http://www.inspireproduction.co.za/#/demo-ui/jquery-spreadsheet">click here</a>.</p>
</body>
</html>