workOrderTotal.jsp
1.7 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
<%--
Created by IntelliJ IDEA.
User: kangmor
Date: 2016/4/23
Time: 21:56
--%>
<%@ include file="/common/taglibs.jsp" %>
<%@ page language="java" pageEncoding="UTF-8" %>
<!-- BEGIN PAGE HEADER-->
<link href="${ctx}/styles/codebase/webix.css" rel="stylesheet" type="text/css"/>
<link href="${ctx}/styles/codebase/kanban/kanban.css" rel="stylesheet" type="text/css"/>
<div class="row col-md-12">
<div class="col-md-12">
<div class="portlet box">
<div class="portlet-body">
<div class="chart" id="kanban" style="min-height: 473px">
</div>
</div>
</div>
</div>
</div>
<c:set var="scripts" scope="request">
<script src="${ctx}/styles/codebase/webix.js"></script>
<script src="${ctx}/styles/codebase/kanban/kanban.js"></script>
<script src="${ctx}/scripts/data.js"></script>
<script type="text/javascript">
webix.ready(function () {
webix.ui({
view: "kanban",
container: "kanban",
cols: [
{
header: "Backlog",
body: {view: "kanbanlist", status: "new"}
},
{
header: "In Progress",
body: {view: "kanbanlist", status: "work"}
},
{
header: "Testing",
body: {view: "kanbanlist", status: "test"}
},
{
header: "Done",
body: {view: "kanbanlist", status: "done"}
}
],
data: base_task_set
});
});
</script>
</c:set>