The current layout of the edit template when adaptive rendering is enabled is not very intuitive and user friendly - https://demos.telerik.com/aspnet-mvc/scheduler/adaptive-rendering
It would be beneficial if the design is improved for better user experience on mobile devices. For example, identifying and locating the save button is not easy:
DataSource Wrappers do not expose a configuration property do create a kendo.data.SchedulerDataSource. This is needed to configure a shared DataSource between the Filter and the Scheduler
The wrapper should be able to integrate the Filter with Scheduler as referenced by the Filter's Documentation
1565222
Currently the Year view of the Scheduler displays only the start date of a multi-day event. Please provide an option to display multiday events in the tooltip for each day the event occurs similar to the Month view.
Hi Team,
I'd like to request for a built-in Monthly Agenda view to allow a larger view for the Kendo UI Scheduler.
Thank you!
Hello,
I think the new-event dialog is slow to open, when there are hundreds of events, because a placeholder event is added to the calendar before the dialog is shown. This causes re-rendering of all events, adding a noticeable delay.
Initial setup for reproduction:
public void OnGet()
{
if (meetings == null)
{
meetings = new List<MeetingViewModel>();
Enumerable.Range(1, 200).ToList().ForEach(x => meetings.Add(new MeetingViewModel()
{
MeetingID = x,
Title = "Daily Event " + x,
Start = DateTime.Now.AddHours(x * 2),
End = DateTime.Now.AddHours(x * 3),
Description = "Description for event " + x,
Attendees = new List<int>() { (x % 3) + 1 },
RecurrenceRule = "FREQ=DAILY;INTERVAL=1"
}));
Enumerable.Range(1, 200).ToList().ForEach(x => meetings.Add(new MeetingViewModel()
{
MeetingID = x,
Title = "Weekly Event " + x,
Start = DateTime.Now.AddHours(x * 2),
End = DateTime.Now.AddHours(x * 3),
Description = "Description for event " + x,
Attendees = new List<int>() { (x % 3) + 1 },
RecurrenceRule = "FREQ=WEEKLY;INTERVAL=1"
}));
}
}
Navigate to the scheduler page
Related to daylight saving: in the US on14 March, 2021, at 2:00AM the clocks are moved 1h forward.
Dojo example.
The selection is moved 1h back to 1:00AM (or 1:30AM respectively) and the event is created at this time.
The event should be created at 3:00AM. This will be consistent with the way Outlook handles daylight saving - in a new meeting if you select 2:00AM as a start time, it is automatically changed to 3:00AM.
Dear Telerik Team
I have recently found a bug in the asp.net core Scheduler.
What I did (using this demo):
1. Created a daily event
2. Edited the second event (the current occurrence) and saved it
3. Tried to edit the second event again
The problem is now that the popup if I want to edit the current occurrence or series still showed up but it should not.
We had the same problem also on our asp.net core application.
Best Regards
Jan
Improve the .FooterTemplate() to support inline templates and receive the widget instance as a parameter, but not the event data.
Reproducible in the Vertical Grouping demo.
After adding 11 or more events, the last event starts overlapping the next resource group slot.
The slot should resize accordingly, based on the number of events shown in it. Events should not be displayed outside of the slot they belong to.
the header display 5/21 for 21 may, but should be 21/5 for French culture
no translation for Export PDF : "Export to PDF" should be "Exporter en PDF" in french Translation
Show picture
Add an option to configure a separate custom editor to be used when the Scheduler's mobile mode is enabled. This would make possible using two different templates at the same time, for example:
.Editable(editable => {
editable.TemplateName("CustomEditorTemplate").MobileTemplateName("CustomEditorMobileTemplate");
})
Hello,
We are subscribing to the change event of scheduler on clicking any event/Slot , the functionality works fine with window machines.
In iPad the change event gets triggered on clicking any part of scheduler. for instance when i click the show Full day text below it triggers the change event in iPad but not in windows.
Please let us know how to restrict change event to be triggered only when a slot/event is selected in iPad.
Thanks.