This is a migrated thread and some comments may be shown as answers.

Bug in Month View

4 Answers 54 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
Thomas
Top achievements
Rank 1
Thomas asked on 29 Aug 2011, 11:09 AM
Hello,

There seems to be a bug in the month view.
Today (29.08.2011) the ScheduleView has a problem with the week-label in the month view. (pls. see screenshot)
I've tested this issue with various themes and it's all the same.

Environment:
Silverlight 5
Culture: de
Telerik Version: Q2 2011

I reduced Xaml and code to an absolute minimum.

Any ideas? Workarounds?

cheers, Thomas

<UserControl x:Class="SchedulerTest.MainPage"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
             mc:Ignorable="d"
             d:DesignHeight="300"
             d:DesignWidth="400">
 
    <Grid x:Name="LayoutRoot"
          Background="White">
        <telerik:RadScheduleView AppointmentsSource="{Binding Appointments}">
            <telerik:RadScheduleView.ViewDefinitions>
                <telerik:MonthViewDefinition />
            </telerik:RadScheduleView.ViewDefinitions>
        </telerik:RadScheduleView>
    </Grid>
</UserControl>

using System.Collections.ObjectModel;
using System.Windows.Controls;
using Telerik.Windows.Controls.ScheduleView;
 
namespace SchedulerTest
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
            Appointments = new ObservableCollection<Appointment>();
            DataContext = this;
        }
 
        public ObservableCollection<Appointment> Appointments { get; private set; }
 
    }
}

4 Answers, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 29 Aug 2011, 11:13 AM
Hi Thomas,

This is a known problem that has been fixed several weeks ago. Please, try the latest internal build and let me know if the problem persists.

Greetings,
Valeri Hristov
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

0
Thomas
Top achievements
Rank 1
answered on 29 Aug 2011, 12:19 PM
Thanks for the info!

Thomas
0
Thomas
Top achievements
Rank 1
answered on 17 Oct 2011, 03:05 PM
Hi,

Just realized, that the bug still exists. 
Pls see the screenshot.

Version: 2011.2.920.1040

cheers, Thomas
0
Dani
Telerik team
answered on 18 Oct 2011, 02:27 PM
Hello Thomas,

A more specific use case which resulted in the same bug was found after version 0920. The issue is fixed since version 2011.2.1010.1040.

Please upgrade to the latest version of the assemblies.

I hope this will solve the issue you are experiencing.

Regards,
Dani
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Tags
ScheduleView
Asked by
Thomas
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
Thomas
Top achievements
Rank 1
Dani
Telerik team
Share this question
or