File: tabsWrapImperative.html

package info (click to toggle)
libjs-jquery-tmpl 1.0.0~beta%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 396 kB
  • ctags: 127
  • sloc: makefile: 5
file content (74 lines) | stat: -rw-r--r-- 1,937 bytes parent folder | download | duplicates (3)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
A tabs control against HTML markup, using imperative API to provide wrapped HTML content
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>A tabs control against HTML markup, using imperative API to provide wrapped HTML content</title>
	<link href="resources/tabs.css" rel="stylesheet" type="text/css" />
</head>
<body>

<h1>Tabs</h1>

<div id="tabsView">..loading</div>

<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
<script src="../../../jquery.tmpl.js" type="text/javascript"></script>

<div id="tabsContent" style="display:none">
	<h3>Inline</h3>
	<div>
		Rendering a <span class='special'>template</span> declared in script block
	</div>

	<h3>String</h3>
	<div>
		Rendering a <span class='special'>template</span> passed as a string
	</div>

	<h3>Remote</h3>
	<div>
		Rendering remote data using <span class='special'>templates</span>
	</div>
</div>

<script id="tabsWrap" type="text/x-jquery-tmpl">
	<table class="tabsView"><tbody>
		<tr>
			{{each $item.html("h3", true)}}
				<th class="header_${$index === $item.state.activeIndex}">
					${$value}
				</th>
			{{/each}}
		</tr>
		<tr><td colspan='${$item.html("h3").length}'>
			<div class="body">
				{{html $item.html("div")[$item.state.activeIndex]}}
			</div>
		</td></tr>
	</tbody></table>
</script>

<script type="text/javascript">

	var state = { activeIndex: 0 };

	// ******************** Load UI ********************

	$( "#tabsView" ).empty();
	$( "#tabsWrap" ).tmpl( null, {state: state, wrapped: "#tabsContent"} ).appendTo( "#tabsView" );

	// ******************** Events ********************

	$( "#tabsView" )
		.delegate( ".header_false", "click", function() {
			var ti = $.tmplItem( this );
			ti.state.activeIndex = $(this).index();
			ti.update();
		});

</script>

</body>
</html>