mobile.html
1.48 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
<!DOCTYPE html>
<html>
<head>
<title>Kendo UI Mobile - Hybrid Framework</title>
<meta charset="utf-8">
<link href="../styles/kendo.mobile.all.min.css" rel="stylesheet">
<script src="../js/jquery.min.js"></script>
<script src="../js/kendo.all.min.js"></script>
<script src="content/shared/js/console.js"></script>
<script type="text/javascript" charset="utf-8">
var NAV_JSON_URL = "content/mobile-nav.json";
</script>
</head>
<body id="examples">
<div data-role="view" data-title="Kendo UI" id="index" data-layout="" data-show="nullCurrentExample" data-init="initSearch">
<header data-role="header">
<div data-role="navbar" id="normal">
<span data-role="view-title"></span>
</div>
</header>
<ul data-role="listview" data-source="navDataSource" data-template="nav-template">
<script type="text/x-kendo-template" id="nav-template">
<a href="#: url #.html" style="#: data.new ? 'color: green' : '' #">#: text #</a>
</script>
</ul>
</div>
<div data-id="examples" data-role="layout" data-show="showDemoLayout" data-hide="removeView">
<header data-role="header">
<div data-role="navbar">
<a data-align="left" data-role="backbutton">Back</a>
<span data-role="view-title"></span>
</div>
</header>
</div>
<script src="content/shared/js/mobile-examples.js"></script>
</body>
</html>