Hi Atish,
Thanks for your update.
We can get the current view dates of the scheduler using getCurrentViewDates method from which you can get the start and end date of the current view. Please refer to the following sample.
navigating: (args: NavigatingEventArgs) => {
if (args.action == "date") {
console.log("navigating");
var sObj = document.querySelector(".e-schedule").ej2_instances[0];
var currentDates = sObj.getCurrentViewDates();
}
}
Regards,
Nevitha