Completed
Last Updated: 11 Oct 2022 10:54 by ADMIN
Release 3.6.0 (14 Sep 2022) (R3 2022)
Created by: Grant
Comments: 17
Category: Scheduler
Type: Feature Request
44
I would like to be able to drag and drop items from a list of custom items into the calendar and create an appointment out of it.
Duplicated
Last Updated: 04 Oct 2022 14:08 by ADMIN

Hi there.

So I've been struggling for the last 2 days with the scheduler having this weird issue where setting it to Today's date set's the Scheduler's date correctly, but the incorrect date is shown in the date picker, with the correct date in the picker's popup. 

I then went to the Scheduler overview screen and noticed the exact same bug there, so I'll be linking that page to show the issue along with an attached screenshot of the issue.
https://demos.telerik.com/blazor-ui/scheduler/month-view

Duplicated
Last Updated: 04 Oct 2022 07:13 by ADMIN
Created by: Jean
Comments: 0
Category: Scheduler
Type: Feature Request
3
I would like to customize the Scheduler Toolbar. Such customizations might be the addition of custom buttons. 
Unplanned
Last Updated: 19 Sep 2022 16:25 by Support ATT
Created by: Support ATT
Comments: 0
Category: Scheduler
Type: Feature Request
2
Please add support for grouping by date similar to https://demos.telerik.com/kendo-ui/scheduler/date-grouping.
Duplicated
Last Updated: 30 Aug 2022 07:04 by ADMIN
Created by: web
Comments: 0
Category: Scheduler
Type: Feature Request
1
Support workweek SchedulerView in Scheduler
Unplanned
Last Updated: 22 Aug 2022 14:22 by Shannon
Created by: Shannon
Comments: 0
Category: Scheduler
Type: Feature Request
2
I'd like to have the ability to export the Scheduler appointments to iCalendar.
Unplanned
Last Updated: 12 Aug 2022 06:01 by Holger
Created by: Holger
Comments: 0
Category: Scheduler
Type: Bug Report
1

I have created an event series with the following RecurrenceRule:

RecurrenceRule = "FREQ=DAILY;BYDAY=MO,TU,WE,TH,FR"

However, it looks like the collection of days is not taken into consideration and the events are created for every day of the week as if I have only set:

RecurrenceRule = "FREQ=DAILY"

---

ADMIN EDIT

---

A possible workaround for the time being is to use  "FREQ=WEEKLY" and extend the occurrence to the desired days of the week. For example, targeting the "Morning run" appointment: https://blazorrepl.telerik.com/cQuiFGOK01nSotIT28.

Unplanned
Last Updated: 05 Aug 2022 07:38 by ADMIN
I want to have the month view Weekday title to three letters - When a phone is in portrait mode full day names are too long for the columns so look awful. 
Unplanned
Last Updated: 04 Aug 2022 08:48 by Holger
Created by: Holger
Comments: 0
Category: Scheduler
Type: Bug Report
2

Hi,

I have a recurrent event with the following dates:

"Start": "2022-08-01T07:00:00",
"End": "2022-08-01T08:00:00",
"RecurrenceRule": "FREQ=DAILY;UNTIL=2022-08-04T05:00:00"

https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 says:

The UNTIL rule part defines a DATE or DATE-TIME value that bounds the recurrence rule in an inclusive manner.  If the value  specified by UNTIL is synchronized with the specified recurrence, this DATE or DATE-TIME becomes the last instance of the recurrence.  The value of the UNTIL rule part MUST have the same value type as the "DTSTART" property

I generated the events with Thunderbird, synchronized to the caldav-Server and read it from there. 

In the Telerik Scheduler I got only 3 occurences of the event: from the 1st to the 3rd.

In Thunderbird I got 4. From the 1st to the 4th. According with the RFC, Thunderbird is right :-) 

----------------------- ADMIN EDIT -----------------------

The recurrence generation currently considers the time in the recurring rules. To workaround the issue, you should manually change the until parameter to contain the maximum possible hour, minute and second for the day. Here is an example:

 

// item is your appointment item

var rule = RecurrenceRule.Parse(item.RecurrenceRule); if(rule.Until.HasValue) { var untilDate = rule.Until.Value; rule.Until = new DateTime(untilDate.Year, untilDate.Month, untilDate.Day, 23, 59, 59); } item.RecurrenceRule = rule.ToString();

 

 

--------------------------------------------------------------------

Unplanned
Last Updated: 02 Aug 2022 20:10 by Robert C
Created by: Scott
Comments: 5
Category: Scheduler
Type: Feature Request
16
I would like to be able to modify the height of the Scheduler rows.
Duplicated
Last Updated: 26 Jul 2022 08:40 by ADMIN
Created by: Rick
Comments: 3
Category: Scheduler
Type: Feature Request
1
This ticket is similar to this ticket. We are needing the scheduler control with various timeline views, most importantly with the Month View.
Completed
Last Updated: 08 Jun 2022 07:21 by ADMIN
Release 3.4.0

If you drag an occurrence to a different time slot, a new appointment is created and the series is accordingly updated. However, if you are editing an occurrence via the edit form to change its start and end, a new appointment is correctly created but the initial occurrence remains not updated in the series.

Can be reproduced in the Appointment Editing demo.

Unplanned
Last Updated: 17 Mar 2022 13:11 by Bjarne
Created by: Bjarne
Comments: 0
Category: Scheduler
Type: Feature Request
2
Once the multiple appointments selection is available, I want to be able to delete all selected appointments at once.
Unplanned
Last Updated: 17 Mar 2022 13:08 by Bjarne
Created by: Bjarne
Comments: 0
Category: Scheduler
Type: Feature Request
3

Currently, it is possible to select only one appointment at a time. I want to be able to select more than one appointment to perform some operation with all selected ones - for example, delete them.

Unplanned
Last Updated: 17 Mar 2022 09:18 by ADMIN
Created by: Neil
Comments: 4
Category: Scheduler
Type: Feature Request
10

I don't want this feature and I would like to hide this button.

At the moment, CSS like this can do the job, but this should be a parameter on the component or the particular view.

        .no-businesshours .k-scheduler-footer {
            display:none;
        }

    <div class="no-businesshours">
        <TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" @bind-View="@CurrView" Height="600px" Width="800px">
            <SchedulerViews>
                <SchedulerDayView StartTime="@DayStart" />
                <SchedulerWeekView StartTime="@DayStart" />
                <SchedulerMultiDayView StartTime="@DayStart" NumberOfDays="10" />
            </SchedulerViews>
        </TelerikScheduler>
    </div>

Unplanned
Last Updated: 15 Mar 2022 16:26 by Lewis

I have a scheduler, and am using a custom Edit handler. I need to support recurrence, and editing recurring events. When the use double-clicks on a recurring event, there is a dialog that asks whether they would like to edit the occurrence or the entire series.

I want to be able to capture the results of this dialog. `SchedulerEditEventArgs` doesn't include any attributes that track this.

 

===========

ADMIN EDIT

===========

The implementation of this enhancement could be covered by either including the corresponding attributes in the SchedulerEditEventArgs or by exposing a Template for the RecurrenceDialog.

Note: You may also check the Ability to directly edit an occurence or the series, without the prompt asking you to choose feature request as the implementation of both features will most likely be covered in one release.

Unplanned
Last Updated: 17 Feb 2022 12:09 by Lewis
Created by: Lewis
Comments: 0
Category: Scheduler
Type: Feature Request
3
Currently, it is not possible to assign multiple resource values/instances to a single appointment - for example, a meeting that should have several attendees. Please add such functionality similar to https://demos.telerik.com/aspnet-mvc/scheduler/resources.
Duplicated
Last Updated: 01 Feb 2022 16:05 by ADMIN

Here are some use cases: 

- Highlighting Today slot

- Change background colours for specific dates and/or days - such as weekends

- Change fonts and/or style of numbers on prev/next months days

Unplanned
Last Updated: 27 Jan 2022 10:06 by ADMIN

Currently, creating an appointment is made by double clicking on a slot. The case of single clicking to create an appointment is already in another request.

If you take the example of Google agenda, you can create an appointment by selecting directly the dates by sweeping with one long single click.

Here would be the request:

An event similar to SchedulerEditEventArgs (containing Start, End, IsAllDay, IsNew ; IsCancelled: to be able to have a custom edit form) that would be triggered with one long single click selecting the dates/hours slots of the appointment.

---

ADMIN EDIT

---

Although the discussion targets different functionality, we are keeping the current request open as we consider it valid to ensure better UX for appointment creation on mobile devices and we would like to see how the demand for that goes.

Completed
Last Updated: 17 Dec 2021 10:59 by ADMIN
Release 3.0.0
Created by: Edwin
Comments: 4
Category: Scheduler
Type: Bug Report
3

I have located an issue with the scheduler in Firefox

It currently is not possible to edit an appointment in Firefox when visiting the following demo page:

https://demos.telerik.com/blazor-ui/scheduler/appointment-editing

Edge and Chrome work as expected.

I noticed this issue in my local project and referred to the demo's to see if I was doing something stupid :-).

I am assuming that the demo's are running in .net 5 and that the demo's are blazor server applications.