Thanks for your update.
We have prepared the below sample to adjust the scrollbar position based on the current time.
<Code>
create: "onCreate",
actionComplete: "onComplete"
function onCreate() {
var scheduleObj = $("#Schedule1").data("ejSchedule");
var scrollerObj = scheduleObj.element.find('div#' + scheduleObj._id + '_scroller').data("ejScroller");
if ($(".e-highlightcurrenttimeline").length != 0 && (!ej.isNullOrUndefined(scrollerObj))) {
if (scheduleObj.model.orientation == "horizontal")
scheduleObj.element.find("div#" + scheduleObj._id + "_scroller").ejScroller({ scrollLeft: (parseInt($(".e-highlightcurrenttimeline").css("left")) - 100) });
else
scheduleObj.element.find("div#" + scheduleObj._id + "_scroller").ejScroller({ scrollTop: (parseInt($(".e-highlightcurrenttimeline").css("top")) - 100) });
}
}
function onComplete(args) {
if (args.requestType == "dateNavigate" || args.requestType == "viewNavigate")
onCreate();
}
</Code>
Note: Above sample is made in JS platform for your reference and the same can be achieved in ASP platform too.
Regards,
Karthigeyan