/* This software is allowed to use under GPL or you need to obtain Commercial or Enterise License to use it in non-GPL project. Please contact sales@dhtmlx.com for details */ scheduler.config.active_link_view = "day"; scheduler.attachEvent("onTemplatesReady", function() { var s_d = scheduler.date.str_to_date(scheduler.config.api_date); var d_s = scheduler.date.date_to_str(scheduler.config.api_date); var month_x = scheduler.templates.month_day; scheduler.templates.month_day = function(date) { return "" + month_x(date) + ""; }; var week_x = scheduler.templates.week_scale_date; scheduler.templates.week_scale_date = function(date) { return "" + week_x(date) + ""; }; dhtmlxEvent(this._obj, "click", function(e) { var start = e.target || event.srcElement; var to = start.getAttribute("jump_to"); if (to) { scheduler.setCurrentView(s_d(to), scheduler.config.active_link_view); if (e && e.preventDefault) e.preventDefault(); return false; } }) });