-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy patharray.html
161 lines (126 loc) · 5.67 KB
/
array.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Listing JSON aray using the HTML template</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="scripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="../src/jquery.loadJSON.js")" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$('ul').loadJSON('list.js');
});
</script>
<script type="text/javascript" src="scripts/shCore.js"></script>
<script type="text/javascript" src="scripts/shBrushJScript.js"></script>
<script type="text/javascript" src="scripts/shBrushXml.js"></script>
<link type="text/css" rel="stylesheet" href="scripts/shCoreDefault.css"/>
<link type="text/css" rel="stylesheet" href="scripts/shThemeDefault.css"/>
<script type="text/javascript">SyntaxHighlighter.all();</script>
</head>
<body>
<div id="page-wrap">
<a href="http://code.google.com/p/jquery-load-json/" alt="Home">Home</a>
<div id="contact-area">
<h1>Loading JSON in the list</h1>
JQuery loadJSON plugin enables you to load JSON array of objects and generate list of HTML elements based on the template.
You can either define template item that will be replicated for each of the elements in the array (see <a href="list.html">list as example</a>)
or you can define template for each element in the array. This can be done if you know how many elements you will have in the array
that is returned (e.g. if you show five latest comments, ten elements per page etc.).
<h2>Live Example</h2>
HTML generated using loadJSON plugin is shown below:
<br/>
<br/>
<ul>
<li rel="0">
<a href="details.html" class="ID"><img class="Logo" alt="" src=""/> <span class="Name"></span></a>
<br /><span class="Address"></span>, <span class="Town"></span>
</li>
<li rel="1">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
<li rel="2">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
<li rel="3">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
</ul>
<br/>
<p>In this example array of JavaScript objects is used as a data source for the list of elements. As you can see template for the first element is differnet than a template for the other ones. Details about implementation is described in the sections below.</p>
<br/>
<h2>Implementation</h2>
<p>JQuery loadJSON plugin enables you to load array of JavaScript objects into the list.
</p>
<p>
In the HTML should be placed one item for each element that should be generated and marked with rel="0", rel="1" etc so plugin can match
array elements with HTML elements by indexes and rel attributes. Note that you migh skip indexes in the code and these array elements will
be ignored.
</p>
<p><pre class="brush: xml;">
<ul>
<li rel="0">
<a href="details.html" class="ID">
<img class="Logo" alt="" src=""/>
<span class="Name"></span>
</a>
<span class="Address"></span>, <span class="Town"></span>
</li>
<li rel="1">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
<li rel="2">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
<li rel="3">
<a href="details.html" class="ID"><span class="Name"></span></a>
</li>
</ul>
</pre></p>
<br/>
<p> Once HTML template item is prepared it is required to provide a JSON array that will be used to populate template item shown above. Example of JSON array used in this example is shown below:
</p>
<pre class="brush: js;">
[
{
"ID": 17,
"Name": "Emkay Entertainments",
"Address": "Nobel House, Regent Centre",
"Town": "Lothian",
"Logo":"images/logo17.jpg"
},
{
"ID": 18,
"Name": "The Empire",
"Address": "Milton Keynes Leisure Plaza"
},
{
"ID": 19,
"Name": "Asadul Ltd",
"Address": "Hophouse"
},
{
"ID": 20,
"Name": "Star Records",
"Address": "St Danny Street"
},
{
"ID": 21,
"Name": "Ashley Mark Publishing Company",
"Address": "1-2 Vance Court"
}
]
</pre>
<p>
This array contains elements with properties ID, Name, and Address that will be bound to the elements in the HTML template.
<br/>
When template and JSON are prepared they should be bound toghether in order to generate output. Template is defined in the UL HTML element, and under assumption that JSON array is placed into the "list.js" file, the following code generates output HTML using template and JSON array:
</p>
<pre class="brush: js;">
$('ul').loadJSON('list.js');
</pre>
</p>
</div>
</div>
</body>
</html>