Unplanned
Last Updated: 18 Sep 2019 10:14 by ADMIN
Created by: Vladimir
Comments: 0
Category: ScheduleView
Type: Feature Request
3
Currently when the RadScheduleView is grouped by some resources, all of them are displayed at once and each is in a separate calendar. We should consider introducing an option for the users to switch between the resource that is visible.
Unplanned
Last Updated: 06 Sep 2019 18:49 by ADMIN
Add an API similar to the SlotSelectionBehavior that allows you to customize the highlighted slot. This is the slot that is colored (usually in gray) when you mouse over the timeline of the RadScheduleView control.
Unplanned
Last Updated: 05 Sep 2019 10:43 by ADMIN
Currently, if the ShowAllDayArea property of the ViewDefinition is True, appointments longer than 24 hours are shown in the AllDayArea. We should add an option for such appointments to be shown in the normal slots. 
Unplanned
Last Updated: 04 Mar 2019 18:39 by ADMIN
Introduce properties for customization of the navigation panel such as:
- Showing/hiding a today button
- Showing/hiding the selected view definition ListBox
- Showing/hiding the RadDatePicker and navigation buttons
Unplanned
Last Updated: 10 Jan 2019 15:27 by ADMIN
Created by: Stefan
Comments: 0
Category: ScheduleView
Type: Feature Request
3

hi,

 

I can I make a feature request please for the appointment item control. I'd like to be able to have the delete button hidden depending on whether my appointment wants to hide the delete button. Some appointments can be deleted, some can't. the problem with the current option of using the schedule control is that it's all appointments can be deleted or all appointments can't.

because of all the different themes and complexity around them I don't want to change the actual underlying template, so to resolve this myself I have made a source code change in AppointmentItem.OnApplyTemplate. I have added this code in to create a binding:


            // Stefan: start
            // Ensure that the can be Show and hidden depending on the appointment type
            var deleteButton = GetTemplateChild("DeleteButton") as Button;
            if (deleteButton != null)
            {
                BindingOperations.SetBinding(deleteButton, Button.VisibilityProperty, new Binding()
                {
                    Path = new PropertyPath("Appointment.ShowDeleteButton"),
                    Converter = new System.Windows.Controls.BooleanToVisibilityConverter()
                });
            }
            // Stefan: end

hopefully this can be built into the system using a multi-binding where you check for the schedule control allowing deletion and then on a per appointment basis.

Thanks,

Stefan

Unplanned
Last Updated: 21 May 2018 18:11 by Brandon
Unplanned
Last Updated: 28 Mar 2018 10:58 by ADMIN
Make it possible to render custom elements in the TimeRuler of the control.

Possible uses could be when you want to render an indicator like the CurrentTimeIndicator but for different time zone.
Unplanned
Last Updated: 26 Mar 2018 09:53 by ADMIN
Unplanned
Last Updated: 20 Feb 2018 13:42 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ScheduleView
Type: Feature Request
2
This is valid for the DayView and the WorkDayView but it could be researched if applicable also for other views.

Currently, the maximum height of an appointment is determined by the MinorTickLength applied. If the slots between the ticks are too small, the appointment's subject will be clipped vertically. In Outlook there is a mechanism that applies something like a minimum height which allows the subject to be drawn regardless the actual size of the appointment.
Unplanned
Last Updated: 16 Jan 2018 09:24 by ADMIN
Unplanned
Last Updated: 04 Jan 2017 13:06 by Joshua Obal
Drag and drop is not working properly for RadScheduleView WPF running inside WindowsFormsHost, in a WPF Browser Application. When you drag an appointment, it drops it in another location. 

The hierarchy of child controls is as follows:
•	WPF XAML Browser App page, containing a WinFormsHost  (WPF)
  o	WInFormsControl containing a ElementHost control (WinForms)
   	WPFUserControl containing RadScheduleView (WPF)
Please see the attached sample project that demonstrates this issue. I would like to make the whole application WPF, however the parents of the WPFUserControl are an existing application where we want to include the RadScheduleView.
Unplanned
Last Updated: 04 Jan 2017 07:28 by ADMIN
The resize (splitter) controls would be used to select (get) the time space which they wrap. For example please refer the attached screenshot.
Unplanned
Last Updated: 04 Jan 2017 06:34 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ScheduleView
Type: Bug Report
5
*  SnapAppointments should cause appointments to snap to tick marks, as it does now.
 *  By default, SnapAppointments should not prevent the start/end time from falling outside the visible time range. (Or at least it should consistently prevent or allow this.)
 *  There should be another bool property that prevents/allows the start/end time to be outside the bounds of the visible time range.
http://admin.telerik.com/?Context=Support&Control=%7e%2fUserControls%2fSupport%2fThreadReply.ascx&ST=425043&SM=0
Unplanned
Last Updated: 03 Jan 2017 21:18 by Niels
Unplanned
Last Updated: 03 Jan 2017 21:09 by Bill
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ScheduleView
Type: Feature Request
6
Whens scrolling a group that is Freezed to remain always in View.
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
When double click on the right of the ViewDefinition buttons new Appointment dialog is shown
Unplanned
Last Updated: 03 Jan 2017 21:03 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ScheduleView
Type: Feature Request
6
New ViewDefinition which shows an overview of a complete year. There should be a separate Calendar for each month and the days which have appointments should appear in Bold style.
Unplanned
Last Updated: 03 Jan 2017 21:02 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ScheduleView
Type: Feature Request
7
Currently it is possible to set only fixed width to the GroupHeaders.
Unplanned
Last Updated: 03 Jan 2017 20:59 by Ramius
When creating an recurrent appointment on the 31st of the month Outlook gives the user a warning: "Some months have fewer than 31 days. For these months, the occurrence will fall on the last day of the month."  And as the message indicates, the event occurrences would start on the last day of the month when the 31st does not exist. 

This will set the occurrences at the end of each month regardless of the length of the month.