Hello!
My team has identified a need for a sticky header on the scheduler. Essentially when scrolling down through a large scheduler, we would like an option for the header to be "sticky" or remain visible atop the scheduler as you scroll. We are unsure how difficult this would be, but allowing users to retain the resource reference regardless of how far they scroll would be very helpful!!! If this is not descriptive enough please feel free to let me know, and I can find some examples!
Thank you!
-Eric Reed
Hello,
The Month View in the Scheduler displays 6 weeks, and we sought to change this to just the 4 weeks in the current month, rather than showing 1.5 - 2 weeks of the following month as well. Could it possibly be made configurable to set the number of weeks, or perhaps a toggle to enable/disable extra days/weeks that are not in the current month?
Thanks
Hello everyone,
are you planning on implementing the feature to select multiple events and drag them onto another date, like it is possible in jQuery?
http://demos.telerik.com/kendo-ui/scheduler/selection?_ga=2.126584516.852324468.1575276456-1228880553.1535611602
Or should I open a new Feature Request?
Best regards
Tobi
Hello,
we have the need, to implement custom timeline views for the scheduler which shows a month and quarter timeline view.
This is currently not possible because the TimelineViewModule is not exporting the TimelineMultiDayViewComponent.
We request, to add this component to the exports and provide an updated dev version of the scheduler published to npm so that we can continue soon.
Thank you!
Best regards
Julian Hochstetter
Modify the Kendo-recurrence-editor with the Frequency field. The current Kendo-recurrence-editor does not provide the flexibility of configuring an event multiple times in a day. For example, if there is a requirement to schedule an event twice a day, there is no way to do it.
Kendo Recurrence Editor -
Required Kendo Recurrence Editor(Frequency field added and it will be visible for all type of occurrence other than 'Never') -
Ticket ref# - https://www.telerik.com/account/support-tickets/view-ticket/1440368
Hello,
we request the feature, to have the possiblity, to create a new event, by doing a slot click + dragging the mouse + release to create a new event.
Can we expect this feature or do you can suggest a workaround using existing functionality to get a similar functionality?
Thank you!
Best regards
Julian Hochstetter
Hello! My team has identified a need for an extended hours indicator for the scheduler, hopefully this is the correct place to put in a feature request! Essentially, my team would like the ability to indicate that appointments exist for the current day, but those appointments are outside of the standard set working hours and thus not shown on the scheduler. On the below screenshot of a different scheduler, an arrow is circled in red on the bottom. That arrow indicates that there is an appointment outside the current viewed schedule for that day. Would you be open to implementing a feature like this one day?
In the jQuery Scheduler, the event template was also used for the drag hint. This allowed me to change the appearance of the drag hint according to the drag hint's position.
In the Angular Scheduler, the drag hint seems to show a static transparent copy of the event being dragged.
It will be really useful to have the drag-hint use the event template and also provide a boolean stating whether the event using the template is a drag hint.
Here's an example:
<ng-template kendoSchedulerEventTemplate let-event="event.dataItem" let-resources="resources" let-dragHint="isDragHint">
<div [style.background-color]="calculateBackground(event, resources)" *ngIf="!dragHint; else: dragHintTemplate">>
Regular Event
</div>
<ng-template #dragHintTemplate>
<div [style.background-color]="calculateBackground(event, resources)">
Drag Hint
</div>
</ng-template>
</ng-template>
A property to remove all-day slot in the scheduler just like it is in jQuery (https://docs.telerik.com/kendo-ui/api/javascript/ui/scheduler/configuration/alldayslot)
Current workaround:
Add the following CSS snippet:
.hide-all-day .k-scheduler-table tr:nth-of-type(0), .k-scheduler-times-all-day, .k-scheduler-table.k-scheduler-header-all-day {
display: none;
}
Thank you.
The ability to to drag and drop a event into and out of the scheduler control is required.
This would allow for more complex UI's allowing users to drag from multiple scheduler or from other controls
Like in the other scheduler components it would be very nice to highlight the hoverd timeslot and show the start time of the slot when hovering
I would be nice to highlight the currently selected event. As in the example below the selected event has a purple border
Our particular app does not allow overlapping or concurrent events. If I have an event on the calendar it leaves extra open space at the end of the event for the user to click on and schedule another event. How do I remove the whitespace and make the event fill the entire slot container?
https://www.telerik.com/kendo-angular-ui/components/scheduler/views/day-week/
If you look at the 12pm "Dance Practice" event you can see the space on the end, I want the entire slot filled. I tried CSS forcing the .k-event to 100% width which works with the daily view but this breaks the weekly view.
I know I can add logic to the click event to check if an event already exists and just ignore the click, but that is not very efficient and it still leaves that space on the end which serves no purpose and kind of ugly. Any ideas?