-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdynamic_template_test.html
80 lines (63 loc) · 1.57 KB
/
dynamic_template_test.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
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
75
76
77
78
79
80
<template name="Static">
{{> DynamicTemplate template="NoData"}}
</template>
<template name="StaticData">
{{> DynamicTemplate template="WithData" data=getData}}
</template>
<template name="Dynamic">
{{> DynamicTemplate template=getTemplate}}
</template>
<template name="DynamicData">
{{> DynamicTemplate template="WithData" data=getData}}
</template>
<template name="DynamicParentData">
{{#with getData}}
{{> DynamicTemplate template="WithData"}}
{{/with}}
</template>
<template name="DynamicParentDataOnTemplateDynamic">
{{! rename to Template.dynamic in 0.9.4}}
{{> UI.dynamic template='_DynamicParentDataOnTemplateDynamic' data=getData}}
</template>
<template name="_DynamicParentDataOnTemplateDynamic">
{{> DynamicTemplate template="WithData"}}
</template>
<template name="InheritedParentData">
{{#with 'outer'}}
{{#with 'inner'}}
{{> DynamicTemplate template="WithDataAndParentData"}}
{{/with}}
{{/with}}
</template>
<template name="DynamicWithBlock">
{{#DynamicTemplate template=getTemplate}}
default
{{/DynamicTemplate}}
</template>
<template name="NoData">
NoData
</template>
<template name="WithData">
WithData-{{this}}
</template>
<template name="WithDataAndParentData">
WithDataAndParentData-{{this}}-{{..}}
</template>
<template name="One">
One
</template>
<template name="Two">
Two
</template>
<template name="EventsTest">
<div class="click">
Trigger Click
</div>
</template>
<template name="LookupHostTest">
{{getValue}}
</template>
<template name="LookupHostDepTest">
{{getValueFromTemplate}}
{{getValueFromHost}}
</template>