-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
47 lines (46 loc) · 922 Bytes
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="libs/jquery.min.js"></script>
<script type="text/javascript" src="easyfilter.js"></script>
</head>
<body>
<table filterable-table>
<thead>
<tr filterable-header-row>
<th filterable-column filterable-logic="text">City</th>
<th filterable-column filterable-logic="numeric">Year</th>
<th filterable-column filterable-logic="numeric">Sales</th>
</tr>
</thead>
<tr>
<td>São Paulo</td>
<td>2012</td>
<td>1,000</td>
</tr>
<tr>
<td>são Paulo</td>
<td>2012</td>
<td>1,000</td>
</tr>
<tr>
<td>São Paulo</td>
<td>2013</td>
<td>1,500</td>
</tr>
<tr>
<td>Rio de Janeiro</td>
<td>2011</td>
<td>1,200</td>
</tr>
<tr>
<td>Rio de Janeiro</td>
<td>2012</td>
<td>1,800</td>
</tr>
</table>
<script type="text/javascript">
</script>
</body>
</html>