The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
BSBalasubramanian Sattanathan Syncfusion Team April 29, 2020 08:36 AM UTC
Hi Florian Mihalits,
Greetings from Syncfusion Support.
We have validated your requirement “Get current date boundaries” at our side and prepared a sample based on that using create and actionComplete event like below code snippet. We can get current date boundaries by using below code snippet.
function onCreate() {
currentDates();
}
function onActionComplete(args) {
if (args.requestType === "dateNavigate" || args.requestType === "viewNavigate") {
currentDates();
}
}
function currentDates() {
var schObj = $('#Schedule1').ejSchedule('instance');
var startDate = new Date(schObj.dateRender[0]);
var endDate = new Date(schObj.dateRender[schObj.dateRender.length -1])