-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 989 Bytes
/
index.html
File metadata and controls
39 lines (32 loc) · 989 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style> HTML,body { margin: 0; padding: 0; height: 100%; } </style>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script src="https://unpkg.com/ag-grid-community@21.0.1/dist/ag-grid-community.min.js"></script></head>
<body>
<div ng-app="example" ng-controller="exampleCtrl" style="width: 800px;">
<div >
<div style="padding: 4px">
<br>
<br>
<div style="float: right;">
<input type="text" ng-model="gridOptions.quickFilterText" placeholder="Looking in the table..."/>
</div>
<div style="padding: 4px;">
<b>Informations Screen </b> ({{rowCount}})
<br>
<br>
</div>
<div style="clear: both;"/>
</div>
<div style="width: 100%; height: 400px;"
ag-grid="gridOptions"
class="ag-theme-blue">
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>