Unplanned
Last Updated: 03 Nov 2020 05:39 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 12 Jul 2016 08:33
Category: Scheduler/Reminder
Type: Bug Report
4
FIX. RadScheduler - the last resource seems cut when the vertical scrollbar is displayed (horizontal scrollbar for the Timeline view)
To reproduce:

Color[] colors = new Color[]
{
    Color.LightBlue, Color.LightGreen, Color.LightYellow,
    Color.Red, Color.Orange, Color.Pink, Color.Purple, Color.Peru, Color.PowderBlue
};
Random rand = new Random();
for (int i = 0; i < 25; i++)
{
    Resource resource = new Resource();
    resource.Id = new EventId(i);
    resource.Name = i + ".Resource";
    resource.Color = colors[rand.Next(0, colors.Length)];
    this.radScheduler1.Resources.Add(resource);
}

this.radScheduler1.GroupType = GroupType.Resource;
this.radScheduler1.ActiveView.ResourcesPerView = this.radScheduler1.Resources.Count;

for (int i = 0; i < 3; i++)
{
    Appointment a = new Appointment(DateTime.Now.AddHours(i), TimeSpan.FromMinutes(30), "A" + i);
    a.ResourceId = this.radScheduler1.Resources.Last().Id;
    this.radScheduler1.Appointments.Add(a);
}

NOTE: it is also valid for the horizontal scrollbar in Timeline view.

Workaround: use the SetResourceSize to increase the last resource's width a little bit: http://docs.telerik.com/devtools/winforms/scheduler/views/grouping-by-resources
Attached Files:
2 comments
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 03 Nov 2020 05:39

Hi, Brandon,

Thank you for sharing with us that you are experiencing the same undesired effect. Don't forget to cast your vote for the item. The more votes an item gathers, the higher its priority becomes.

I have escalated this issue to our developers. We will do our best to introduce an appropriate solution. However, I can't give you an exact time frame when a fix will be available.

Please make sure that you follow this item in order to get notified once any status change occurs.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Brandon
Posted on: 02 Nov 2020 20:02
This has been known since 2016 and still hasn't been resolved?  I'm a user experiencing this issue.