forked from brakmic/OpenUI5_Table_Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 2.07 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 2.07 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>OpenUI5 Demos</title>
<!-- General -->
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<!-- IE settings -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="advarics web application" />
<meta name="keywords" content="advarics, application " />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link href="Content/kendo/kendo.common.min.css" rel="stylesheet" />
<link href="Content/kendo/kendo.default.min.css" rel="stylesheet" />
<link href="Content/kendo/kendo.dataviz.min.css" rel="stylesheet" />
<link href="Content/kendo/kendo.dataviz.default.min.css" rel="stylesheet" />
<link href="Content/openui5.css" rel="stylesheet" />
</head>
<body>
<nav id="openui5-demo-nav">
<ul>
<li><a href="http://www.brakmic.de">Home</a></li>
<li><a href="#">OpenUI5 Demos</a>
<ul data-bind="foreach: menuItems">
<li><a href="#" data-bind="text: text, attr: { href: href }" target="_blank"></a></li>
</ul>
</li>
</ul>
</nav>
<script src="Scripts/vendor/jquery-1.11.1.min.js"></script>
<script src="Scripts/vendor/knockout-3.2.0.js"></script>
<script src="Scripts/vendor/require.js"></script>
<script type="text/javascript">
var viewModel = function () {};
window.advarics = window.advarics || {};
window.advarics.vm = viewModel;
function MenuItem(oMenuItem) {
var self = this;
self.text = ko.observable(oMenuItem.text);
self.href = ko.observable(oMenuItem.href);
}
viewModel.prototype.menuItems = ko.observableArray([]);
$(document).ready(function () {
var vm = new advarics.vm();
vm.menuItems.push(new MenuItem({ text: 'Shell & KendoUI', href: 'index-shell.html' }));
vm.menuItems.push(new MenuItem({ text: 'Master-Detail', href: 'index-md.html' }));
ko.applyBindings(vm);
});
</script>
</body>
</html>