-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdgrid_05_single_query.html
More file actions
42 lines (38 loc) · 1.09 KB
/
dgrid_05_single_query.html
File metadata and controls
42 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DGrid 05 - single query - dojo-webpack-config</title>
<link rel="stylesheet" href="./example-resources/dgrid-css/dgrid.css">
<link rel="stylesheet" href="./example-resources/examples.css">
<style>
/*
Custom visual styles for the grid
(dgrid.css is imported earlier for these to override it)
*/
.dgrid, .dgrid-cell {
border: none;
}
.dgrid-cell {
padding: 1em;
}
.dgrid-header .dgrid-cell {
font-weight: bold;
}
.dgrid-row-odd {
background-color: #eef7ff;
}
</style>
</head>
<body>
<h1>Demo: Single-Query Mixin with Auto-Height</h1>
<form id="queryForm">
<label for="lastField">Last name contains:</label>
<input id="lastField" name="last">
<button type="submit">Filter</button>
<button type="reset">Reset</button>
</form>
<div id="grid"></div>
<script src="bundle/dgrid_05_single_query.bundle.js"></script>
</body>
</html>