-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 2.12 KB
/
index.html
File metadata and controls
71 lines (70 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Список сотрудников</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/uikit.almost-flat.min.css" />
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<nav id="menu" class="uk-navbar">
<span class="uk-navbar-brand" href="#">Brand</span>
<menu class="uk-navbar-nav">
<li class="uk-navbar-content">
<form class="uk-form uk-display-inline-block">
<input id="query" type="text" placeholder="Поиск"/>
</form>
</li>
</menu>
<div class="uk-navbar-flip">
<ul class="uk-navbar-nav">
<li class="uk-active"><a id="print"><i class="fa fa-print"></i> Печать</a></li>
</ul>
</div>
</nav>
<table cellpadding="0" cellspacing="0" border="0" id="table" class="uk-table">
<thead>
<tr>
<th><h3>фио</h3></th>
<th><h3>телефон</h3></th>
<th><h3>email</h3></th>
<th><h3>отдел</h3></th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="./js/jquery.min.js"></script>
<script src="./js/jquery.stickytableheaders.min.js"></script>
<script src="./js/tinytable.js"></script>
<script type="text/javascript">
var sorter = new TINY.table.sorter('sorter','table',{
headclass:'head',
ascclass:'asc',
descclass:'desc',
evenclass:'evenrow',
oddclass:'oddrow',
// evenselclass:'evenselected',
// oddselclass:'oddselected',
// paginate:true,
// size:10,
// colddid:'columns',
// currentid:'currentpage',
// totalid:'totalpages',
// startingrecid:'startrecord',
// endingrecid:'endrecord',
// totalrecid:'totalrecords',
// hoverid:'selectedrow',
// pageddid:'pagedropdown',
// navid:'tablenav',
sortcolumn:3,
sortdir:1,
// sum:[8],
// avg:[6,7,8,9],
// columns:[{index:7, format:'%', decimals:1},{index:8, format:'$', decimals:0}],
init:false
});
</script>
<script src="./js/script.js"></script>
</body>
</html>