jetsum_dhtmlx_gantt
Version:
An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.
74 lines (66 loc) • 1.84 kB
HTML
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Lightbox customization</title>
<script src="../../codebase/dhtmlxgantt.js?v=7.1.9"></script>
<link rel="stylesheet" href="../../codebase/dhtmlxgantt.css?v=7.1.9">
<script src="../common/testdata.js?v=7.1.9"></script>
<style>
html, body {
height: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
}
</style>
<style>
.red .gantt_cell, .odd.red .gantt_cell,
.red .gantt_task_cell, .odd.red .gantt_task_cell {
background-color: #FDE0E0;
}
.green .gantt_cell, .odd.green .gantt_cell,
.green .gantt_task_cell, .odd.green .gantt_task_cell {
background-color: #BEE4BE;
}
</style>
</head>
<body>
<div id="gantt_here" style='width:100%; height:100%'></div>
<script>
gantt.locale.labels.section_priority = "Priority";
gantt.serverList("priorityOptions", [
{key: "1", label: "Hight"},
{key: "2", label: "Normal"},
{key: "3", label: "Low"}
]);
gantt.config.columns = [
{name: "text", label: "Task name", tree: true, width: '*'},
{
name: "priority", label: "Priority", width: 90, align: "center", template: function (item) {
if(item.priority){
var priority = gantt.serverList("priorityOptions").find(function(option){
return option.key == item.priority;
});
if(priority){
return priority.label;
}
}
return "Low";
}
}
];
gantt.config.lightbox.sections = [
{name: "description", height: 38, map_to: "text", type: "textarea", focus: true},
{
name: "priority",
height: 22,
map_to: "priority",
type: "select",
options: gantt.serverList("priorityOptions")
},
{name: "time", type: "time", map_to: "auto", time_format: ["%d", "%m", "%Y", "%H:%i"]}
];
gantt.init("gantt_here");
gantt.parse(users_data);
</script>
</body>