Hi Team,
I would like to request the inclusion of a PDF template property to allow the printed PDF page to have a custom layout like the Kendo UI Grid's page-template in this live demo. For example, adding a title to the top of the page.
Thank you!
Currently, when interacting with the "More Events" button:
The widget navigates to the "Day View" by default - if it happens to be present. It would be beneficial if there is a configuration that allows explicitly dictating the navigation behavior.
Describe the bug
When there is an event that lasts multiple days, but is not an all-day event the title and the up arrow overlap, thus it makes the reading of the title harder.
To reproduce
Open the Dojo - https://dojo.telerik.com/@NeliK/IruYeGEc
Expected behavior
The arrow and the title should be rendered with some margin
Workaround
.k-event-template{
margin-top: 8px !important;
}
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
If a Scheduler event's start time is set differently than :00 or :30, the event will be dropped in an incorrect slot when snap is enabled. The start time in the hint is also incorrect.
The event will be placed at 2:19 AM instead of at 2:00 AM
The event should be placed at the dropped slot.
If the snap
option is set at runtime the drag hint of the events starts having wrong height.
After changing the snap option at runtime as a result the drag hint height is correct when the snap is set to false, but it has wrong height when the snap is enabled.
The drag hint should have the same height as the dragged event.
move: function(e){
var dragHintEl = $('.k-event-drag-hint')
var dataUid = $('.k-event-drag-hint').attr('data-uid')
var event = $('.k-event[data-uid="'+ dataUid +'"]:not(.k-event-drag-hint)')
var height = $(event).height()
$(dragHintEl).height(height)
},
Dojo - https://dojo.telerik.com/@NeliK/aZArEdof
If an all-day event is resized to multiple days and then the user tries to resize the event back to one day, the event is not always resized.
The issue is occasionally reproducible and does not occur for all all-day events. The event is resized back only if the user tries to drag the mouse down and then resize. Here is a screencast - https://somup.com/cZeX6QpRlX.
It should be possible to resize back the all-day events back to one-day duration without moving the mouse down.
Hi,
Currently the Scheduler has no option to limit the axis of the drag and drop.
Kendo.Draggable already has this feature, however setting it in the scheduler has no effect.
https://docs.telerik.com/kendo-ui/api/javascript/ui/draggable/configuration/axis
in this dojo i have a little workaround to achieve this behavior.
https://dojo.telerik.com/oWuvUsIt
If you configure a Scheduler's endTime (e.g. 16:15), and you have an event that ends past that endTime (e.g. 16:30), the event will not be properly visible.
The Tennis Practice event is only briefly visible
The event should be visible respecting the view's endTime
As for the current version of the Telerik Scheduler, if using the Adaptive Rendering Mode for the Scheduler
.Mobile(MobileMode.Auto)
the Adaptive Slot Height feature (https://demos.telerik.com/kendo-ui/scheduler/adaptive-slot-height) does not work for a mobile screen in a Month view. Due to this, there is no opportunity to dynamically change the height of the slots in a Month view so that they can fit the events in the specific slot. Thus, in case dots standing for the events in a month view are customized and replaced by regular events, the scheduler cells do not change their height to account for the events number. The only options to display all the events per day in a month view on a small screen are now either to make the height of all scheduler cells really big (not user friendly) or decrease the height of the events depending on their number to fit them in a cell (not desirable behavior).
Taken all this into consideration, adaptive rendering mode needs the same adaptive slot height feature which exists now only for a regular mode of the scheduler.
### Bug report
When using the Scheduler on a mobile device and trying to edit an existing event through the Month view, the editor template does not load the event details. The Scheduler opens an empty editor to create a new event.
### Reproduction of the problem
1) Create a Scheduler and enable its adaptive rendering (mobile: true).
2) Open the Scheduler on a mobile device and select the Month view.
3) Try to edit an existing event.
4) The opened editor template does not load the event details.
A Dojo sample for reproduction: https://dojo.telerik.com/uherEWib
### Expected/desired behavior
The events must be editable when using the Month view, and the adaptive mode is enabled.
### Environment
* **Kendo UI version: 2023.3.1114
* **jQuery version: 3.7.0
* **Browser: [all]
Hi Team,
I would like to request a way to directly edit events in the Kendo UI Scheduler's year view. For example, maybe a way to click on events to edit:
Thank you!
Currently vertical virtualization is available which improves the Day, Week and Month views.
Such DOM virtualization would be good for the timeline views (where horizontal scrolling is utilized) as well.
When the Selectable configuration is enabled and the start of an event is not visible, the Scheduler will scroll left to the beginning of the event, as demonstrated in this dojo.
Can you expose a configuration options that would allow for toggling this behavior off?
Hi Team,
I would like to be able to find a faster way to handle changing background cells/columns based on if they are a special day. I have look at this KB, but it is very slow when using a yeartimelineview.
Thank you!
Hi
In our application, we use Kendo Scheduler vue (kendo-scheduler-vue-wrapper) for planning working hours. Users create their own working schedule which involves mostly drag/drop of the Scheduler items (with fixed duration) from an external source (ListBox). This process was much simpler in the Silverlight version of the component because of the visual indication of the slots where appointments will be created:
Please provide the option to have some visual indication of the start/end time of the appointment that will be created either in the Scheduler (slots) or on the item we are dropping.
This feature is already there when moving or resizing an existing appointment.
Thank you in advance
When the timezone of the machine and the timezone set in the Scheduler are in different days, the currentTimeMarker is not displayed in the Timeline view.
When the timezone of the machine and the timezone set in the Scheduler are in different days, the cusrrentTimeMarker is not displayed in the Timeline view.
The cusrrentTimeMarker should be displayed in all the views.
Hi Team,
I'd like to request the functionality to sync the Kendo UI Scheduler's events with Google Calendar. This would be preferably one way from Kendo UI to Google.
Thank you!
Hi Team,
Can you adjust the culture of de-DE and de-CH? Month/Day looks incorrect for these regions, it should be Day/Month.
Thank you!
Hi, We have a requirement where in, we would like to have rolling view for the standard timeline views (timelineweek & timelineMonth). What i mean by that is, the start-date of the view starts from the current date and the end date is based on whether its a week or a month. For instance, if its the timeline week, if the current day is Wednesday, the start day of the week must be the current Wednesday and the end should be the next week's Tuesday. The navigation from there should be the next Wednesday to the next corresponding Tuesday. Now if the user navigates to a day via the calendar, for instance a Thursday. The view must start from a Thursday and end on a Wednesday. The same applies for the timelinemonth view as well. Only change would be, in the case of the month, its the date and not the day. Currently this can be achieved by creating a custom-view by extending the standard views. It would be really helpful if this is available as toggle/setting in the standard view. Thanks, Shashank