-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
39 lines (34 loc) · 1.28 KB
/
example.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
<!DOCTYPE html>
<html lang="en" ng-app="nomoEFW"><!-- nomo APP scope-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Frontend</title>
<!-- nomo CSS -->
<link href="/nomoEFW/app/dist/nomo.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Frontend</h1>
<div>
<div class="container-fluid">
<div class="row">
<div nomo-table="sampletable" nomo-table-class="'Peldatabla'" class="col-md-6"></div>
<div ng-if="sampletable.activerow" nomo-form="samplefrom" nomo-form-class="sampletable.class" nomo-form-id="sampletable.activerow.rowid" class="col-md-6"></div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
Selected rows: <strong>{{sampletable.selection}}</strong><br />
Active row: <strong>{{sampletable}}</strong><br />
</div>
</div>
</div>
</div>
<!-- nomo JS -->
<script src="/nomoEFW/app/dist/nomo.min.js" type="text/javascript"></script>
</body>
</html>