data.js
3.9 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
72
73
74
var base_task_set =[
{ id:1, status:"new", text:"Task 1", tags:"webix,docs", comments:[{text:"Comment 1"}, {text:"Comment 2"}] },
{ id:2, status:"work", text:"Task 2", color:"red", tags:"webix", votes:1, personId: 4 },
{ id:3, status:"work", text:"Task 3", tags:"webix,docs", comments:[{text:"Comment 1"}], personId: 6 },
{ id:4, status:"test", text:"Task 4 pending", tags:"webix 2.5", votes:1, personId: 5 },
{ id:5, status:"new", text:"Task 5", tags:"webix,docs", votes:3 },
{ id:6, status:"new", text:"Task 6", tags:"webix,kanban", comments:[{text:"Comment 1"}, {text:"Comment 2"}], personId: 2 },
{ id:7, status:"work", text:"Task 7", tags:"webix", votes:2, personId: 7, image: "image001.png" },
{ id:8, status:"work", text:"Task 8", tags:"webix", comments:[{text:"Comment 1"}, {text:"Comment 2"}], votes:5, personId: 4 },
{ id:9, status:"new", text:"Task 9", tags:"webix", votes:1, personId: 2},
{ id:10, status:"done", text:"Task 10", tags:"webix", comments:[{text:"Comment 1"}, {text:"Comment 2"}, {text:"Comment 3"}], votes:10, personId:1 },
{ id:11, status:"work", text:"Task 11", tags:"webix 2.5", votes:3, personId: 8 },
{ id:12, status:"ready", text:"Task 12", votes:2 , personId: 8, image: "image002.png"},
{ id:13, status:"ready", text:"Task 14", personId: 8}
];
var task_set = [
{ id:1, status:"new", text:"Task 1", tags:"webix,docs" },
{ id:2, status:"new", text:"Task 2", tags:"webix" },
{ id:3, status:"new", text:"Task 3", tags:"webix" },
{ id:4, status:"new", text:"Task 4", tags:"webix" },
{ id:5, status:"new", text:"Task 5", tags:"webix,docs" },
{ id:6, status:"ready", text:"Task 6", tags:"webix,docs" },
{ id:7, status:"ready", text:"Task 7", tags:"webix" },
{ id:8, status:"ready", text:"Task 8", tags:"webix" },
{ id:9, status:"ready", text:"Task 9", tags:"webix" },
{ id:10, status:"ready", text:"Task 10", tags:"webix,docs" },
{ id:11, color:"red", status:"work", text:"Task 11", tags:"webix,docs" },
{ id:12, status:"work", text:"Task 12", tags:"webix" },
{ id:13, status:"work", text:"Task 13", tags:"webix" },
{ id:14, color:"red", status:"work", text:"Task 14", tags:"webix" },
{ id:15, status:"work", text:"Task 15", tags:"webix,docs" },
{ id:16, status:"test", text:"Task 16", tags:"webix,docs" },
{ id:17, color:"red", status:"work", text:"Task 17", tags:"webix" },
{ id:18, status:"done", text:"Task 18", tags:"webix,docs" },
{ id:19, color:"red", status:"done", text:"Task 19", tags:"webix" },
{ id:20, status:"complete", text:"Task 20", tags:"webix,docs" },
{ id:21, color:"red", status:"complete", text:"Task 21", tags:"webix" },
{ id:22, status:"ready", text:"Task 22", tags:"webix,docs" },
{ id:23, color:"red", status:"ready", text:"Task 23", tags:"webix" }
];
var staff= [
{id:1, name:"Rick Lopes"},
{id:2, name:"Martin Farrell"},
{id:3, name:"Douglass Moore"},
{id:4, name:"Eric Doe"},
{id:5, name:"Sophi Elliman"},
{id:6, name:"Anna O'Neal"},
{id:7, name:"Marcus Storm"},
{id:8, name:"Nick Branson"}
];
var user_task_set =[
{ id:1, status:"new", text:"Test new authentification service", tags:"webix", comments:[{text:"Comment 1"}, {text:"Comment 2"}] },
{ id:2, status:"work", user: 1, text:"Performance tests", color:"red", tags:"webix" },
{ id:3, status:"work", user: 2, text:"Kanban tutorial", tags:"webix,docs", comments:[{text:"Comment 1"}] },
{ id:4, status:"work", user: 3, text:"SpreadSheet NodeJS", tags:"webix 3.0" },
{ id:5, status:"test", user: 3, text:"Portlets view", tags:"webix 2.5" }
];
var team_task_set =[
{ id:1, status:"new", text:"Test new authentification service", tags:"webix", comments:[{text:"Comment 1"}, {text:"Comment 2"}] },
{ id:2, status:"work", team: 1, text:"Kanban tutorial", color:"red", tags:"webix,docs" },
{ id:3, status:"work", team: 2, text:"New skin", tags:"webix"},
{ id:4, status:"work", team: 1, text:"SpreadSheet NodeJS", tags:"webix 3.0" },
{ id:5, status:"test", text:"Portlets view", tags:"webix 2.5" }
];