how to the below Js files in MVC4

hi,
please hoe to config the below js files using MVC4 with C#
dhtmlxscheduler_active_links.js
dhtmlxscheduler_minical.js
dhtmlxscheduler_limit.js
dhtmlxscheduler_timeline.js

below code is i am confiuration some of please check and let us know

scheduler.Config.Tooltip_ClassName = “dhtmlXTooltip tooltip”;
// scheduler.Config.active_link_view = “day”;
//scheduler.Config.highlight_displayed_event = true;
scheduler.InitialView = units.Name;
scheduler.Config.details_on_create = true;
scheduler.Config.details_on_dblclick = true;
scheduler.LoadData = true;
scheduler.EnableDataprocessor = true;
scheduler.Config.first_hour = 6;
scheduler.Config.last_hour = 20;
scheduler.Config.time_step = 30;
scheduler.Config.limit_time_select = true;

active_link_view link also

Hello,
please clarify, do you mean you want to add the listed js files to the page?
Since they are the extensions from a regular package, they can be done using DHXScheduler.Extensions collection

scheduler.Extensions.Add("dhtmlxscheduler_active_links.js"); scheduler.Extensions.Add("dhtmlxscheduler_minical.js"); scheduler.Extensions.Add("dhtmlxscheduler_limit.js"); scheduler.Extensions.Add("dhtmlxscheduler_timeline.js");

Where argument is a file url relative to /Scripts/dhtmlxScheduler/ext folder