The user should be able to select multiple events at the same time by pressing the control key. At the moment this can not be done. The following example shows the issue: http://dojo.telerik.com/udItE -> It is not possible to select events from Meeting Room 101 and Meeting Room 201 at the same time. This feature would make it possible to swap events from different groups. For example, swap the meeting rooms of two events.
To select multiple events from different groups in kendo ui scheduler with angular js, but currently it only allows multiple events selection in same group.
When editing a recurring event it can occur than the POST call (the one that creates the exception) finishes well, but the PUT one fails. In this case the exception is created but the new event is not created, causing that the final user thinks that the event disappeared (and causing an inconsistency in database). It would be great if the scheduler could be configured to make one single call with the data of the master event and the new one in the same post, atomicly. Moreover, if it is needed to perform remote validation when resizing or moving one event of a serie (the same scenario as the previous one) it would be much more easier to do it with that single call model.
can we show Time vertically in Timeline view
Is it possible to implement an option to show only the workdays in the Scheduler Month View?
The timeline control currently restricts the users to select events from only one group. It must allow selection across the groups. It does not make any sense in restricting the user to a group. Also to deselect an event from selected events is not possible and the user has to deselect all the events and start from scratch. This seems to be a bug with this tool.
New edit mode: When events are retrieved, those models should always be as lightweight as possible (id, start, end, title), and not include all the other properties required to edit an event. If you have hundreds of events with lots of properties, your control does not scale well. When you then edit one of these lightweight events, it should make an ajax request to go fetch the "full" model used to populate the edit popup window. For the create, it may not have to make an ajax request, but the "full" schema needs to be defined still, so it has a model to bind, and it would be nice to have a way to dynamically specify that schema, in case you have different event model types. In my case, I have three different types of appointments the user can create/edit. Ideally, these "full" models would either get sent via ajax when the popup is closed, or when the datasource is synced, they get trimmed down to the lightweight version. Hopefully this all makes sense...it's all about having tiny models for speed, but larger models for editing. Anyone that has used your control to show tons of appointments (especially with many properties each) will likely get where I am going with this.
Scheduler should support template directives for the group header template option.
In the scheduler add the posibility to draw events in event (parent/child). The child will be limited by the dates on its parent.
Add a property to the Kendo Scheduler called something like allowOverlap (true/false) as an easy way to allow or disallow overlapping events based on event start & end on the scheduler timeline. An alternative could be an "onOverlap" event. Thanks
I'd really appreciate it if it were possible to include special slot when using Kendo scheduler in JQuery. I'm trying to create zones contai
According to the documentation for Scheduler.select() this method should "Gets or sets the events (or slots) which are selected." But if I pass in an array of multiple uid elements it only selects the last item in the array.
Code
jsbin example: https://jsbin.com/nirisakavo/1/edit?html,js,output
Really just added a function to select all:
function SelectAll() {
var scheduler = $("#scheduler").data("kendoScheduler");
var allEvents = scheduler.data().map(function(val, i) { return val.uid; });
scheduler.select(allEvents);
}
Repro
Click the 'Select All' button.
Expected: Selects all events.
Actual: Selects only last event.
Hi Team,
It would be nice to have a feature of Collapsible / Expandable grouping function like tree view in Kendo Scheduler Timeline view. We have multiple head groups with 100 sub groups which we are not currently able to Expand / Collapse.
Sample Expand / Collpase feature like https://demos.telerik.com/kendo-ui/treeview/checkboxes
File attached for reference.
Thank you.
The empty space next to the event is needed if we want to add new event next to the one that we already have so it should be observed only if the editable setting is not false or {create: false}. If any of these is set the event should be 100%. https://demos.telerik.com/kendo-ui/scheduler/basic-usage
https://dojo.telerik.com/@zdravkov/uWExofIL
the event width takes all 90% of the width of the slot
the event width should take all the width of the slot
When the dates for the current view are changed in Scheduler, the screenreaders do not read the new date.
Reproduction of the problem
1. Go to Keyboard Navigation Demo
2. Go to the arrow buttons in the toolbar and click 'Next' to change the date
3. Date changes to "Sunday, June 16, 2013 - ..."
Current behavior
The screenreaders do not inform the user that the date has been changed.
Expected/desired behavior
The user should be informed that the date has been changed.
Environment
Kendo UI version: 2021.2.616
Browser: [all ]
I am using KendoUI - free version for schedulers. Everything is working perfectly except Partial Postback. My Client Wants Partial Postback when the calender is filtered or new Event is created ....I have implemented the Ajax but somehow its not working completely - the scheduler does not rebind with new values, its state does not changes ... . However, data is being updated with the partial postback in the database. I am running on a strict timeline.... so any help would be great. Thank you in advance.
It appears that the view startDate/endDate are not yet updated when you hook in to the "navigate" event. I need an event to be thrown after the view is changed, such as a "navigated" event. If there is some other way to do this, please let me know. If not, this seems like it would be an easy one to add. Thanks!
What about set the default start time for currentTimeMarker. Currently currentTimeMarker follows the browser time. This behaviour for each user login that has their own Time Localization. e.g. User A has Sydney time zone (UTC+10.00 Melbourne) then server will send the specific time to the Scheduler and currentTimeMarker will start based on that particular time. Event if User A look at scheduler in PC that use Kuala Lumpur time zone (UTC+08.00 Kuala Lumpur). Maybe add time Localization property for currentTimeMarker. But if it set null, it will follows current PC time.