Now sorting array is hardcoded (for example in kendo.scheduler.timelineview.js) in render method: [ { field: 'start', dir: 'asc' }, { field: 'end', dir: 'desc' } ] it will be very good if you will implement this sorting inside scheduler cell (data/group field) as parameter.
Hi.
I am working with KendoUI 2016.1.322.
I need to change the first day of the week for the scheduler component based on user settings. I found this snippet in your KB
kendo.culture().calendar.firstDay = 1; //2,3,.....
It works but in an app-wide mode, that is, not only the scheduler control changes, but also the datetimepicker control in the same form, they also show Tuesday as the first day of the week
And if later I move to another form, the setting continues active.
How can I only set the scheduler component to start on Tuesday without affecting the other components?
is maybe planned? it would be great, as great is in the Silverlight one...
The configuration should provide a flag for rendering small events to take up their actual size. The current default size of an event is the size of a slot, if the event's duration is smaller than the slot duration. It would be nice to be able to switch to a behavior where if an event is 5 min and the slot is 15 min, it will show up with the size of a third of the slot. This was possible in the Silverlight implementation, with the EnableSmallAppointmentsRendering flag set to false (for Silverlight that was the default behavior).
Hello
Is it possible to group events by 2 different fields in a different view ?
Like :
Custom View 1 - Grouped by Room
Custom View 2 - Grouped by Attendee
Thank you
Currently, the scheduler will render all groups fetched by the corresponding resource.
It would be beneficial to have an option to render only the groups that have relevant events and not rendering empty groups.
Note that this should be optional and not a default behaviour - by enabling this the end-user will not be able to create an event for the non rendered groups.
Dear Telerik,
My problem is behind the "timelineMonth" view of the Scheduler. In the documentation it is written that "showWorkHours" has a support only behind "day" and "week" views. But it is not really like that. In fact, it is included also in "timeline" and "timelineWeek" views and it works fine. Even more, this feature works also in "timelineMonth", but with a small exception that I want to focus on your attention.
Here is an example showing the problem. It's only about selecting the "today" (in my example the "date" property is showing "today". The same behavior could be achieved if you change it to another date and click the "today" button).
I can show you another particular example describing why this feature is very useful. Here, if the user press on "show business hours" button and then select the "Timeline Month", he will break the logic behind. And it makes somehow the "Show Business Hours" button problematic. And let say I should make some workaround to avoid this thing happens, but not sure why.
Hope this is valuable.
Best Regards, Boyan.
See http://alloyui.com/examples/scheduler/. This is very intuitive and kendoui fails here a bit. Even show the time in the event dynamically
Currently events >24h are automatically shown in the all day area. This is confusing if the event starts or ends somewhere during the day. E.g. it starts at 5 p.m. on tuesday and ends on 11 a.m. on thursday. Noone knows when the resource is really available if the event is shown as all day from tuesday to thursday. There should be an option to turn that behaviour off and show such events as regular events. Maybe the only thing needing change is this line in _renderEvents: var isMultiDayEvent = event.isAllDay || event.end.getTime() - event.start.getTime() >= MS_PER_DAY;
It would be very useful from a visual and functional perspective to be able to view scheduler items in a year view, that seems to be currently unsupported.
Allow to have different child groups for each parent group Example: ___________________________________ Meeting Room 101 | Meeting Room 201 ___________________________________ Alex | Bob | Charlie ___________________________________
The Scheduler, configured to import/export to iCal file, exports invalid file in Firefox.
Workaround - https://dojo.telerik.com/UjOVoYUT/2
The exported file is invalid and cannot be opened in Outlook or other apps
The exported file should be valid and be opened in Outlook.
Device : Windows 10 tablet
Browser : Latest Chrome and Edge
When trying to move an event vertically inside the scheduler, the entire web page is scrolling. This cause the event to not move has supposed to.
The problem can be exprienced on the demo page of the scheduler : https://demos.telerik.com/kendo-ui/scheduler/move-resize
Thank you
jQuery.Deferred exception: $ is undefined tt@https://.../sites/pmo/SiteAssets/js/kendo.all.min.js:57:25403
te@https://.../sites/pmo/SiteAssets/js/kendo.all.min.js:57:941
ne@https://.../sites/pmo/SiteAssets/js/kendo.all.min.js:57:1027
Se@https://.../sites/pmo/SiteAssets/js/kendo.all.min.js:57:6785
saveAsPDF/<@https://.../sites/pmo/SiteAssets/js/kendo.all.min.js:58:6431
e@https://.../sites/pmo/SiteAssets/js/jquery-3.5.1.min.js:2:30005
l/</t<@https://.../sites/pmo/SiteAssets/js/jquery-3.5.1.min.js:2:30307
undefined
undefined on $
jQuery alias does not exist with the noConflict()
Cannot use Export to PDF.
I would like to define a template or a message or something such that when there's no events the scheduler doesn't just look like a smushed collection of buttons, or having to set a min-height on the event zone or some other hack.
There should be the ability to show resources (this is multiple resources) without grouping. All resources will show in a line. This would have worked in our case where we have employees and sub-contractors as two different set of resources but cannot be grouped. We needed to show both the sets on the scheduler at the same time and also assign events across to both sets (so an event can belong to an employee and sub-contractor). The two sets cannot be combined into one resources collection as the resources can have the same Ids
I got 2 "views" sharing same page, Scheduler is on the second/hidden view and only show/trigger when user select to view it. Therefore, I need Autobind to be false (same feature as exists on other controls like Gridview), to prevent Scheduler auto populate at the initial stage. Second, I need to parse additional parameter during read/fetch data from Scheduler. Thanks.
At the moment the Scheduler allows multiple appointment selection with Ctrl key held down. I would like to be able to choose between Single or Multiple selection mode, just like a Combobox. I believe there are real and valid use cases to restrict users to 1 selection at a time.