annotate DataTables-1.9.4/examples/plug-ins/dom_sort.html @ 9:7300ed4c1481 draft default tip

Uploaded
author saskia-hiltemann
date Mon, 04 Sep 2017 10:49:00 -0400
parents ac5f9272033b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
2 <html>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
3 <head>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
4 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
5 <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico" />
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
6
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
7 <title>DataTables example</title>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
8 <style type="text/css" title="currentStyle">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
9 @import "../../media/css/demo_page.css";
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
10 @import "../../media/css/demo_table.css";
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
11 input.engine { width: 100%; }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
12 input.version { width: 50px; }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
13 </style>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
14 <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
15 <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
16 <script type="text/javascript" charset="utf-8">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
17 /* Create an array with the values of all the input boxes in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
18 $.fn.dataTableExt.afnSortData['dom-text'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
19 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
20 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
21 $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
22 aData.push( this.value );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
23 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
24 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
25 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
26
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
27 /* Create an array with the values of all the select options in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
28 $.fn.dataTableExt.afnSortData['dom-select'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
29 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
30 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
31 $( 'td:eq('+iColumn+') select', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
32 aData.push( $(this).val() );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
33 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
34 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
35 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
36
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
37 /* Create an array with the values of all the checkboxes in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
38 $.fn.dataTableExt.afnSortData['dom-checkbox'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
39 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
40 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
41 $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
42 aData.push( this.checked==true ? "1" : "0" );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
43 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
44 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
45 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
46
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
47 /* Initialise the table with the required column sorting data types */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
48 $(document).ready(function() {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
49 $('#example').dataTable( {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
50 "aoColumns": [
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
51 null,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
52 null,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
53 { "sSortDataType": "dom-text" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
54 { "sSortDataType": "dom-text", "sType": "numeric" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
55 { "sSortDataType": "dom-select" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
56 { "sSortDataType": "dom-checkbox" }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
57 ]
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
58 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
59 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
60 </script>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
61 </head>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
62 <body id="dt_example">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
63 <div id="container">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
64 <div class="full_width big">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
65 DataTables live DOM sorting example
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
66 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
67
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
68 <h1>Preamble</h1>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
69 <p>This example shows how you can use information available in the DOM to sort columns. Typically DataTables will read information to be sorted during it's initialisation phase, and this will not be updated based on user interaction, so sorting on columns which have, for example, form elements in them, may not reflect the current value of the input. To overcome this problem, you must update the data that DataTables will sort on, just prior to the sort. This method is much more efficient than actually sorting using the DOM, since only one DOM query is needed for each cell to be sorted.</p>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
70 <p>The example below shows the first two columns as normal text with sorting as you would expect. The following columns all have a form input element of different kinds, and the information contained within is what DataTables will perform the sort on, based on the value at the time of the sort.</p>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
71 <p>This is a fairly simple example, but it you aren't constrained to just using form input elements, you could use anything and customise your DOM queries to suit yourself. You could also update the sorting live as a user in entered data into a form using an event handler calling fnSort() or fnDraw().</p>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
72
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
73 <h1>Live example</h1>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
74 <div id="demo">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
75 <table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
76 <thead>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
77 <tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
78 <th>Rendering engine</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
79 <th>Browser</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
80 <th>Platform(s)</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
81 <th>Engine version</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
82 <th>CSS grade</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
83 <th>Check</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
84 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
85 </thead>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
86 <tbody>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
87 <tr class="gradeX">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
88 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
89 <td>Internet
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
90 Explorer 4.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
91 <td><input type="text" class="engine" value="Win 95+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
92 <td class="center"><input type="text" class="version" value="4"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
93 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
94 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
95 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
96 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
97 <option value="X" selected="selected">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
98 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
99 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
100 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
101 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
102 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
103 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
104 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
105 <td>Internet
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
106 Explorer 5.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
107 <td><input type="text" class="engine" value="Win 95+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
108 <td class="center"><input type="text" class="version" value="5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
109 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
110 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
111 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
112 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
113 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
114 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
115 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
116 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
117 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
118 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
119 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
120 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
121 <td>Internet
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
122 Explorer 5.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
123 <td><input type="text" class="engine" value="Win 95+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
124 <td class="center"><input type="text" class="version" value="5.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
125 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
126 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
127 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
128 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
129 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
130 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
131 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
132 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
133 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
134 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
135 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
136 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
137 <td>Internet
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
138 Explorer 6</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
139 <td><input type="text" class="engine" value="Win 98+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
140 <td class="center"><input type="text" class="version" value="6"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
141 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
142 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
143 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
144 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
145 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
146 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
147 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
148 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
149 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
150 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
151 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
152 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
153 <td>Internet Explorer 7</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
154 <td><input type="text" class="engine" value="Win XP SP2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
155 <td class="center"><input type="text" class="version" value="7"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
156 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
157 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
158 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
159 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
160 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
161 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
162 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
163 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
164 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
165 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
166 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
167 <td>Trident</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
168 <td>AOL browser (AOL desktop)</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
169 <td><input type="text" class="engine" value="Win XP"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
170 <td class="center"><input type="text" class="version" value="6"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
171 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
172 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
173 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
174 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
175 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
176 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
177 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
178 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
179 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
180 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
181 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
182 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
183 <td>Firefox 1.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
184 <td><input type="text" class="engine" value="Win 98+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
185 <td class="center"><input type="text" class="version" value="1.7"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
186 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
187 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
188 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
189 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
190 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
191 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
192 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
193 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
194 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
195 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
196 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
197 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
198 <td>Firefox 1.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
199 <td><input type="text" class="engine" value="Win 98+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
200 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
201 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
202 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
203 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
204 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
205 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
206 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
207 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
208 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
209 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
210 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
211 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
212 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
213 <td>Firefox 2.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
214 <td><input type="text" class="engine" value="Win 98+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
215 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
216 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
217 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
218 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
219 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
220 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
221 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
222 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
223 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
224 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
225 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
226 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
227 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
228 <td>Firefox 3.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
229 <td><input type="text" class="engine" value="Win 2k+ / OSX.3+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
230 <td class="center"><input type="text" class="version" value="1.9"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
231 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
232 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
233 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
234 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
235 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
236 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
237 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
238 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
239 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
240 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
241 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
242 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
243 <td>Camino 1.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
244 <td><input type="text" class="engine" value="OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
245 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
246 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
247 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
248 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
249 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
250 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
251 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
252 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
253 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
254 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
255 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
256 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
257 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
258 <td>Camino 1.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
259 <td><input type="text" class="engine" value="OSX.3+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
260 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
261 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
262 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
263 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
264 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
265 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
266 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
267 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
268 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
269 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
270 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
271 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
272 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
273 <td>Netscape 7.2</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
274 <td><input type="text" class="engine" value="Win 95+ / Mac OS 8.6-9.2"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
275 <td class="center"><input type="text" class="version" value="1.7"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
276 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
277 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
278 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
279 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
280 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
281 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
282 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
283 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
284 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
285 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
286 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
287 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
288 <td>Netscape Browser 8</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
289 <td><input type="text" class="engine" value="Win 98SE+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
290 <td class="center"><input type="text" class="version" value="1.7"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
291 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
292 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
293 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
294 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
295 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
296 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
297 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
298 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
299 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
300 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
301 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
302 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
303 <td>Netscape Navigator 9</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
304 <td><input type="text" class="engine" value="Win 98+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
305 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
306 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
307 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
308 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
309 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
310 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
311 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
312 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
313 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
314 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
315 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
316 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
317 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
318 <td>Mozilla 1.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
319 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
320 <td class="center"><input type="text" class="version" value="1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
321 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
322 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
323 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
324 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
325 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
326 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
327 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
328 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
329 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
330 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
331 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
332 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
333 <td>Mozilla 1.1</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
334 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
335 <td class="center"><input type="text" class="version" value="1.1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
336 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
337 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
338 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
339 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
340 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
341 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
342 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
343 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
344 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
345 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
346 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
347 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
348 <td>Mozilla 1.2</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
349 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
350 <td class="center"><input type="text" class="version" value="1.2"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
351 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
352 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
353 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
354 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
355 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
356 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
357 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
358 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
359 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
360 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
361 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
362 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
363 <td>Mozilla 1.3</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
364 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
365 <td class="center"><input type="text" class="version" value="1.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
366 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
367 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
368 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
369 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
370 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
371 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
372 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
373 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
374 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
375 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
376 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
377 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
378 <td>Mozilla 1.4</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
379 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
380 <td class="center"><input type="text" class="version" value="1.4"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
381 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
382 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
383 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
384 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
385 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
386 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
387 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
388 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
389 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
390 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
391 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
392 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
393 <td>Mozilla 1.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
394 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
395 <td class="center"><input type="text" class="version" value="1.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
396 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
397 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
398 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
399 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
400 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
401 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
402 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
403 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
404 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
405 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
406 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
407 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
408 <td>Mozilla 1.6</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
409 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
410 <td class="center"><input type="text" class="version" value="1.6"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
411 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
412 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
413 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
414 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
415 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
416 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
417 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
418 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
419 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
420 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
421 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
422 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
423 <td>Mozilla 1.7</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
424 <td><input type="text" class="engine" value="Win 98+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
425 <td class="center"><input type="text" class="version" value="1.7"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
426 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
427 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
428 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
429 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
430 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
431 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
432 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
433 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
434 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
435 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
436 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
437 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
438 <td>Mozilla 1.8</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
439 <td><input type="text" class="engine" value="Win 98+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
440 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
441 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
442 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
443 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
444 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
445 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
446 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
447 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
448 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
449 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
450 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
451 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
452 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
453 <td>Seamonkey 1.1</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
454 <td><input type="text" class="engine" value="Win 98+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
455 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
456 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
457 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
458 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
459 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
460 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
461 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
462 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
463 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
464 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
465 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
466 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
467 <td>Gecko</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
468 <td>Epiphany 2.20</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
469 <td><input type="text" class="engine" value="Gnome"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
470 <td class="center"><input type="text" class="version" value="1.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
471 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
472 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
473 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
474 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
475 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
476 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
477 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
478 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
479 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
480 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
481 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
482 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
483 <td>Safari 1.2</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
484 <td><input type="text" class="engine" value="OSX.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
485 <td class="center"><input type="text" class="version" value="125.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
486 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
487 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
488 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
489 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
490 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
491 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
492 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
493 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
494 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
495 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
496 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
497 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
498 <td>Safari 1.3</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
499 <td><input type="text" class="engine" value="OSX.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
500 <td class="center"><input type="text" class="version" value="312.8"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
501 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
502 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
503 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
504 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
505 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
506 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
507 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
508 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
509 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
510 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
511 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
512 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
513 <td>Safari 2.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
514 <td><input type="text" class="engine" value="OSX.4+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
515 <td class="center"><input type="text" class="version" value="419.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
516 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
517 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
518 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
519 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
520 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
521 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
522 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
523 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
524 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
525 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
526 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
527 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
528 <td>Safari 3.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
529 <td><input type="text" class="engine" value="OSX.4+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
530 <td class="center"><input type="text" class="version" value="522.1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
531 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
532 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
533 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
534 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
535 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
536 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
537 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
538 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
539 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
540 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
541 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
542 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
543 <td>OmniWeb 5.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
544 <td><input type="text" class="engine" value="OSX.4+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
545 <td class="center"><input type="text" class="version" value="420"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
546 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
547 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
548 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
549 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
550 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
551 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
552 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
553 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
554 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
555 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
556 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
557 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
558 <td>iPod Touch / iPhone</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
559 <td><input type="text" class="engine" value="iPod"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
560 <td class="center"><input type="text" class="version" value="420.1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
561 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
562 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
563 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
564 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
565 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
566 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
567 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
568 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
569 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
570 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
571 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
572 <td>Webkit</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
573 <td>S60</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
574 <td><input type="text" class="engine" value="S60"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
575 <td class="center"><input type="text" class="version" value="413"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
576 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
577 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
578 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
579 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
580 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
581 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
582 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
583 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
584 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
585 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
586 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
587 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
588 <td>Opera 7.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
589 <td><input type="text" class="engine" value="Win 95+ / OSX.1+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
590 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
591 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
592 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
593 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
594 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
595 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
596 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
597 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
598 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
599 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
600 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
601 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
602 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
603 <td>Opera 7.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
604 <td><input type="text" class="engine" value="Win 95+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
605 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
606 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
607 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
608 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
609 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
610 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
611 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
612 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
613 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
614 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
615 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
616 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
617 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
618 <td>Opera 8.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
619 <td><input type="text" class="engine" value="Win 95+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
620 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
621 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
622 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
623 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
624 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
625 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
626 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
627 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
628 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
629 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
630 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
631 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
632 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
633 <td>Opera 8.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
634 <td><input type="text" class="engine" value="Win 95+ / OSX.2+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
635 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
636 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
637 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
638 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
639 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
640 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
641 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
642 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
643 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
644 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
645 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
646 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
647 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
648 <td>Opera 9.0</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
649 <td><input type="text" class="engine" value="Win 95+ / OSX.3+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
650 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
651 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
652 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
653 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
654 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
655 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
656 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
657 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
658 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
659 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
660 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
661 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
662 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
663 <td>Opera 9.2</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
664 <td><input type="text" class="engine" value="Win 88+ / OSX.3+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
665 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
666 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
667 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
668 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
669 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
670 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
671 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
672 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
673 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
674 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
675 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
676 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
677 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
678 <td>Opera 9.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
679 <td><input type="text" class="engine" value="Win 88+ / OSX.3+"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
680 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
681 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
682 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
683 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
684 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
685 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
686 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
687 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
688 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
689 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
690 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
691 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
692 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
693 <td>Opera for Wii</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
694 <td><input type="text" class="engine" value="Wii"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
695 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
696 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
697 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
698 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
699 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
700 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
701 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
702 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
703 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
704 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
705 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
706 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
707 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
708 <td>Nokia N800</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
709 <td><input type="text" class="engine" value="N800"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
710 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
711 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
712 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
713 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
714 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
715 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
716 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
717 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
718 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
719 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
720 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
721 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
722 <td>Presto</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
723 <td>Nintendo DS browser</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
724 <td><input type="text" class="engine" value="Nintendo DS"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
725 <td class="center"><input type="text" class="version" value="8.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
726 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
727 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
728 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
729 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
730 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
731 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
732 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
733 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
734 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
735 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
736 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
737 <td>KHTML</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
738 <td>Konqureror 3.1</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
739 <td><input type="text" class="engine" value="KDE 3.1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
740 <td class="center"><input type="text" class="version" value="3.1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
741 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
742 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
743 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
744 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
745 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
746 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
747 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
748 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
749 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
750 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
751 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
752 <td>KHTML</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
753 <td>Konqureror 3.3</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
754 <td><input type="text" class="engine" value="KDE 3.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
755 <td class="center"><input type="text" class="version" value="3.3"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
756 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
757 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
758 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
759 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
760 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
761 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
762 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
763 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
764 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
765 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
766 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
767 <td>KHTML</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
768 <td>Konqureror 3.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
769 <td><input type="text" class="engine" value="KDE 3.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
770 <td class="center"><input type="text" class="version" value="3.5"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
771 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
772 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
773 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
774 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
775 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
776 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
777 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
778 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
779 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
780 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
781 <tr class="gradeX">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
782 <td>Tasman</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
783 <td>Internet Explorer 4.5</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
784 <td><input type="text" class="engine" value="Mac OS 8-9"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
785 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
786 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
787 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
788 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
789 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
790 <option value="X" selected="selected">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
791 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
792 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
793 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
794 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
795 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
796 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
797 <td>Tasman</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
798 <td>Internet Explorer 5.1</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
799 <td><input type="text" class="engine" value="Mac OS 7.6-9"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
800 <td class="center"><input type="text" class="version" value="1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
801 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
802 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
803 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
804 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
805 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
806 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
807 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
808 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
809 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
810 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
811 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
812 <td>Tasman</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
813 <td>Internet Explorer 5.2</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
814 <td><input type="text" class="engine" value="Mac OS 8-X"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
815 <td class="center"><input type="text" class="version" value="1"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
816 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
817 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
818 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
819 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
820 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
821 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
822 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
823 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
824 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
825 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
826 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
827 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
828 <td>NetFront 3.1</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
829 <td><input type="text" class="engine" value="Embedded devices"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
830 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
831 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
832 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
833 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
834 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
835 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
836 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
837 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
838 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
839 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
840 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
841 <tr class="gradeA">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
842 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
843 <td>NetFront 3.4</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
844 <td><input type="text" class="engine" value="Embedded devices"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
845 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
846 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
847 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
848 <option value="A" selected="selected">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
849 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
850 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
851 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
852 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
853 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
854 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
855 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
856 <tr class="gradeX">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
857 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
858 <td>Dillo 0.8</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
859 <td><input type="text" class="engine" value="Embedded devices"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
860 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
861 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
862 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
863 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
864 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
865 <option value="X" selected="selected">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
866 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
867 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
868 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
869 <td class="center"><input type="checkbox" checked="checked"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
870 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
871 <tr class="gradeX">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
872 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
873 <td>Links</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
874 <td><input type="text" class="engine" value="Text only"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
875 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
876 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
877 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
878 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
879 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
880 <option value="X" selected="selected">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
881 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
882 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
883 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
884 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
885 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
886 <tr class="gradeX">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
887 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
888 <td>Lynx</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
889 <td><input type="text" class="engine" value="Text only"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
890 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
891 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
892 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
893 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
894 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
895 <option value="X" selected="selected">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
896 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
897 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
898 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
899 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
900 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
901 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
902 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
903 <td>IE Mobile</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
904 <td><input type="text" class="engine" value="Windows Mobile 6"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
905 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
906 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
907 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
908 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
909 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
910 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
911 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
912 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
913 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
914 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
915 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
916 <tr class="gradeC">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
917 <td>Misc</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
918 <td>PSP browser</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
919 <td><input type="text" class="engine" value="PSP"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
920 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
921 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
922 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
923 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
924 <option value="C" selected="selected">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
925 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
926 <option value="U">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
927 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
928 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
929 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
930 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
931 <tr class="gradeU">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
932 <td>Other browsers</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
933 <td>All others</td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
934 <td><input type="text" class="engine" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
935 <td class="center"><input type="text" class="version" value="-"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
936 <td class="center">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
937 <select size="1">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
938 <option value="A">A</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
939 <option value="C">C</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
940 <option value="X">X</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
941 <option value="U" selected="selected">U</option>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
942 </select>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
943 </td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
944 <td class="center"><input type="checkbox"></td>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
945 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
946 </tbody>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
947 <tfoot>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
948 <tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
949 <th>Rendering engine</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
950 <th>Browser</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
951 <th>Platform(s)</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
952 <th>Engine version</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
953 <th>CSS grade</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
954 <th>Check</th>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
955 </tr>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
956 </tfoot>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
957 </table>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
958 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
959 <div class="spacer"></div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
960
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
961
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
962 <h1>Initialisation code</h1>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
963 <pre class="brush: js;">/* Create an array with the values of all the input boxes in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
964 $.fn.dataTableExt.afnSortData['dom-text'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
965 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
966 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
967 $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
968 aData.push( this.value );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
969 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
970 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
971 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
972
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
973 /* Create an array with the values of all the select options in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
974 $.fn.dataTableExt.afnSortData['dom-select'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
975 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
976 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
977 $( 'td:eq('+iColumn+') select', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
978 aData.push( $(this).val() );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
979 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
980 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
981 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
982
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
983 /* Create an array with the values of all the checkboxes in a column */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
984 $.fn.dataTableExt.afnSortData['dom-checkbox'] = function ( oSettings, iColumn )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
985 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
986 var aData = [];
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
987 $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
988 aData.push( this.checked==true ? "1" : "0" );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
989 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
990 return aData;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
991 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
992
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
993 /* Initialise the table with the required column sorting data types */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
994 $(document).ready(function() {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
995 $('#example').dataTable( {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
996 "aoColumns": [
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
997 null,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
998 null,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
999 { "sSortDataType": "dom-text" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1000 { "sSortDataType": "dom-text", "sType": "numeric" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1001 { "sSortDataType": "dom-select" },
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1002 { "sSortDataType": "dom-checkbox" }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1003 ]
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1004 } );
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1005 } );</pre>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1006 <style type="text/css">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1007 @import "../examples_support/syntax/css/shCore.css";
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1008 </style>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1009 <script type="text/javascript" language="javascript" src="../examples_support/syntax/js/shCore.js"></script>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1010
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1011
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1012 <h1>Other examples</h1>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1013 <div class="demo_links">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1014 <h2>Basic initialisation</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1015 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1016 <li><a href="../basic_init/zero_config.html">Zero configuration</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1017 <li><a href="../basic_init/filter_only.html">Feature enablement</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1018 <li><a href="../basic_init/table_sorting.html">Sorting data</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1019 <li><a href="../basic_init/multi_col_sort.html">Multi-column sorting</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1020 <li><a href="../basic_init/multiple_tables.html">Multiple tables</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1021 <li><a href="../basic_init/hidden_columns.html">Hidden columns</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1022 <li><a href="../basic_init/complex_header.html">Complex headers - grouping with colspan</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1023 <li><a href="../basic_init/dom.html">DOM positioning</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1024 <li><a href="../basic_init/flexible_width.html">Flexible table width</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1025 <li><a href="../basic_init/state_save.html">State saving</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1026 <li><a href="../basic_init/alt_pagination.html">Alternative pagination styles</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1027 <li>Scrolling: <br>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1028 <a href="../basic_init/scroll_x.html">Horizontal</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1029 <a href="../basic_init/scroll_y.html">Vertical</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1030 <a href="../basic_init/scroll_xy.html">Both</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1031 <a href="../basic_init/scroll_y_theme.html">Themed</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1032 <a href="../basic_init/scroll_y_infinite.html">Infinite</a>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1033 </li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1034 <li><a href="../basic_init/language.html">Change language information (internationalisation)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1035 <li><a href="../basic_init/themes.html">ThemeRoller themes (Smoothness)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1036 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1037
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1038 <h2>Advanced initialisation</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1039 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1040 <li>Events: <br>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1041 <a href="../advanced_init/events_live.html">Live events</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1042 <a href="../advanced_init/events_pre_init.html">Pre-init</a> /
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1043 <a href="../advanced_init/events_post_init.html">Post-init</a>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1044 </li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1045 <li><a href="../advanced_init/column_render.html">Column rendering</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1046 <li><a href="../advanced_init/html_sort.html">Sorting without HTML tags</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1047 <li><a href="../advanced_init/dom_multiple_elements.html">Multiple table controls (sDom)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1048 <li><a href="../advanced_init/length_menu.html">Defining length menu options</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1049 <li><a href="../advanced_init/complex_header.html">Complex headers and hidden columns</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1050 <li><a href="../advanced_init/dom_toolbar.html">Custom toolbar (element) around table</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1051 <li><a href="../advanced_init/highlight.html">Row highlighting with CSS</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1052 <li><a href="../advanced_init/row_grouping.html">Row grouping</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1053 <li><a href="../advanced_init/row_callback.html">Row callback</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1054 <li><a href="../advanced_init/footer_callback.html">Footer callback</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1055 <li><a href="../advanced_init/sorting_control.html">Control sorting direction of columns</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1056 <li><a href="../advanced_init/language_file.html">Change language information from a file (internationalisation)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1057 <li><a href="../advanced_init/defaults.html">Setting defaults</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1058 <li><a href="../advanced_init/localstorage.html">State saving with localStorage</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1059 <li><a href="../advanced_init/dt_events.html">Custom events</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1060 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1061
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1062 <h2>API</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1063 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1064 <li><a href="../api/add_row.html">Dynamically add a new row</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1065 <li><a href="../api/multi_filter.html">Individual column filtering (using "input" elements)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1066 <li><a href="../api/multi_filter_select.html">Individual column filtering (using "select" elements)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1067 <li><a href="../api/highlight.html">Highlight rows and columns</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1068 <li><a href="../api/row_details.html">Show and hide details about a particular record</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1069 <li><a href="../api/select_row.html">User selectable rows (multiple rows)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1070 <li><a href="../api/select_single_row.html">User selectable rows (single row) and delete rows</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1071 <li><a href="../api/editable.html">Editable rows (with jEditable)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1072 <li><a href="../api/form.html">Submit form with elements in table</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1073 <li><a href="../api/counter_column.html">Index column (static number column)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1074 <li><a href="../api/show_hide.html">Show and hide columns dynamically</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1075 <li><a href="../api/api_in_init.html">API function use in initialisation object (callback)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1076 <li><a href="../api/tabs_and_scrolling.html">DataTables scrolling and tabs</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1077 <li><a href="../api/regex.html">Regular expression filtering</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1078 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1079 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1080
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1081 <div class="demo_links">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1082 <h2>Data sources</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1083 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1084 <li><a href="../data_sources/dom.html">DOM</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1085 <li><a href="../data_sources/js_array.html">Javascript array</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1086 <li><a href="../data_sources/ajax.html">Ajax source</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1087 <li><a href="../data_sources/server_side.html">Server side processing</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1088 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1089
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1090 <h2>Server-side processing</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1091 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1092 <li><a href="../server_side/server_side.html">Obtain server-side data</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1093 <li><a href="../server_side/custom_vars.html">Add extra HTTP variables</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1094 <li><a href="../server_side/post.html">Use HTTP POST</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1095 <li><a href="../server_side/ids.html">Automatic addition of IDs and classes to rows</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1096 <li><a href="../server_side/object_data.html">Reading table data from objects</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1097 <li><a href="../server_side/row_details.html">Show and hide details about a particular record</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1098 <li><a href="../server_side/select_rows.html">User selectable rows (multiple rows)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1099 <li><a href="../server_side/jsonp.html">JSONP for a cross domain data source</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1100 <li><a href="../server_side/editable.html">jEditable integration with DataTables</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1101 <li><a href="../server_side/defer_loading.html">Deferred loading of Ajax data</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1102 <li><a href="../server_side/pipeline.html">Pipelining data (reduce Ajax calls for paging)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1103 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1104
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1105 <h2>Ajax data source</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1106 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1107 <li><a href="../ajax/ajax.html">Ajax sourced data (array of arrays)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1108 <li><a href="../ajax/objects.html">Ajax sourced data (array of objects)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1109 <li><a href="../ajax/defer_render.html">Deferred DOM creation for extra speed</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1110 <li><a href="../ajax/null_data_source.html">Empty data source columns</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1111 <li><a href="../ajax/custom_data_property.html">Use a data source other than aaData (the default)</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1112 <li><a href="../ajax/objects_subarrays.html">Read column data from sub-arrays</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1113 <li><a href="../ajax/deep.html">Read column data from deeply nested properties</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1114 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1115
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1116 <h2>Plug-ins</h2>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1117 <ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1118 <li><a href="../plug-ins/plugin_api.html">Add custom API functions</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1119 <li><a href="../plug-ins/sorting_plugin.html">Sorting and automatic type detection</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1120 <li><a href="../plug-ins/sorting_sType.html">Sorting without automatic type detection</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1121 <li><a href="../plug-ins/paging_plugin.html">Custom pagination controls</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1122 <li><a href="../plug-ins/range_filtering.html">Range filtering / custom filtering</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1123 <li><a href="../plug-ins/dom_sort.html">Live DOM sorting</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1124 <li><a href="../plug-ins/html_sort.html">Automatic HTML type detection</a></li>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1125 </ul>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1126 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1127
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1128
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1129 <div id="footer" class="clear" style="text-align:center;">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1130 <p>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1131 Please refer to the <a href="http://www.datatables.net/usage">DataTables documentation</a> for full information about its API properties and methods.<br>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1132 Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1133 </p>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1134
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1135 <span style="font-size:10px;">
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1136 DataTables designed and created by <a href="http://www.sprymedia.co.uk">Allan Jardine</a> &copy; 2007-2011<br>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1137 DataTables is dual licensed under the <a href="http://www.datatables.net/license_gpl2">GPL v2 license</a> or a <a href="http://www.datatables.net/license_bsd">BSD (3-point) license</a>.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1138 </span>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1139 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1140 </div>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1141 </body>
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1142 </html>