Files
DefinitelyTyped/dhtmlxgantt/dhtmlxgantt-tests.ts
2013-12-19 14:48:32 +04:00

33 lines
708 B
TypeScript

/// <reference path="dhtmlxgantt.d.ts" />
//date operations
var start: Date = gantt.date.week_start(new Date());
var next: Date = gantt.date.add(new Date(), 1, "week");
//hotkeys
gantt.keys.edit_cancel = 13;
//config options
gantt.config.details_on_create = true;
gantt.config.scale_height = 40;
gantt.config.xml_date = "%m-%d-%Y";
//templates
gantt.templates.task_class = function (start: Date, end: Date, task: any) {
if (task.some)
return "classA";
else
return "classB";
}
//locale
gantt.locale.labels.new_task = "New task";
//API
gantt.init("scheduler_here", start);
gantt.load("/data/events");
//events
gantt.attachEvent("onBeforeLightbox", function (id?: string) {
gantt.showTask(id);
});