customize dhtmlxscheduler_active_links.js for Timeline view

I’ve configured the time scale to be like this for my Timeline view:

scheduler.createTimelineView({ ...... x_date: "%m/%d", ...... });
And I want to add a link to the Day view onto the time scale, similar as /dhtmlxscheduler/samples/03_extensions/06_links_plugin.html. Dhtmlxscheduler_active_links.js apparently doesn’t work on Timeline view. Does anyone know how to customize it? Thanks!

hi
you use following code one for day and other for minute

scheduler.createTimelineView({
section_autoheight: false,
name: “timeline”,
x_unit: “minute”,
x_date: “%H:%i”,
x_step: 30,
x_size: 24,
x_start: 16,
x_length: 48,
y_unit: scheduler.serverList(“planning”),
y_property: “section_id”,
render: “tree”,
folder_dy:20,
dy:60
});

scheduler.createTimelineView({
section_autoheight: false,
name: “workweek”,
x_unit: “day”,
x_date: “Week #%W”,
x_step: 1,
x_size: 12,
x_start: 0,
x_length: 12,
y_unit: scheduler.serverList(“planning”),
y_property: “section_id”,
render: “tree”,
folder_dy:20,
dy:60
/,
second_scale: { // adding such object to createTimelineView parameters enables second header
x_unit: “day”, // size of unit which should be used for second scale
x_date: “%F %d” // would be translated to “July 01” for example
}
/
});