blob: 8ab579411273b479dc50db9abc2f9d4185ee6bcb (
plain) (
blame)
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
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
function sort_table(tbl, col, dir, numeric)
{
var tbody = tbl.tBodies[0];
var trows = Array.prototype.slice.call(tbody.rows, 0).sort(
function (x, y)
{
if (numeric)
return dir * (parseInt(x.cells[col].textContent) - parseInt(y.cells[col].textContent));
else
return dir * x.cells[col].textContent.localeCompare(y.cells[col].textContent);
})
trows.forEach(function (row) { tbody.appendChild(row); });
}
function make_table_sortable(tbl)
{
var headers = tbl.tHead.rows[0].cells;
var i;
for (i = 0; i < headers.length; i++)
{
(function (col)
{
var dir = 1;
var sorticon = document.createElement("img");
sorticon.setAttribute("src", assetsurl + "/sortind.png");
sorticon.style.cssFloat = "right";
sorticon.style.marginLeft = "0.5em";
headers[col].appendChild(sorticon);
headers[col].addEventListener(
'click',
function ()
{
imgsrc = sorticon.getAttribute("src");
imgsrc = imgsrc.substr(imgsrc.lastIndexOf('/') + 1);
if (imgsrc != 'sortind.png')
dir = -dir;
if (dir < 0)
sorticon.setAttribute("src", assetsurl + "/sortdesc.png");
else
sorticon.setAttribute("src", assetsurl + "/sortasc.png");
var i;
for (i = 0; i < headers.length; i++)
{
if (i != col)
headers[i].lastChild.setAttribute("src", assetsurl + "/sortind.png");
}
sort_table(tbl, col, dir, headers[col].getAttribute("class") == "numeric");
});
}(i));
}
}
|