-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>LWC Mashup - ag-grid and lwc-search-box</title>
<!-- ag-grid web component -->
<script src="/node_modules/ag-grid-community/dist/ag-grid-community.js"></script>
<script src="/node_modules/ag-grid-webcomponent/src/agGrid.js"></script>
<!-- lwc-search-box web component -->
<script src="/node_modules/lwc-search-box/dist/app.js"></script>
<!-- Application code -->
<link rel="stylesheet" href="public/style.css" />
<script src="public/app.js"></script>
</head>
<body>
<!-- Site logo -->
<div class="logo">
<img src="public/logo.png" alt="National Parks data" />
</div>
<!-- LWC Web Component -->
<wc-search-box
auto-search-min-length="0"
auto-search-delay="200"
placeholder-text="Search"
></wc-search-box>
<!-- AG-Grid Web Component -->
<div class="grid">
<ag-grid
group-headers
suppress-row-click-selection
row-selection="multiple"
class="ag-theme-balham"
></ag-grid>
</div>
</body>
</html>