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

Events Are Cut Off

1 Answer 64 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Steven Fischer
Top achievements
Rank 1
Steven Fischer asked on 04 Aug 2010, 07:12 PM
Hello,

I'm having a wierd display error where certain calendar events are visually cut off (see screen shot).  I've investigated and found no difference in the data between ones that work and ones that done.  

I'm adding items to the calendar in C# using objects that inherit from IAppointmentData (see below).  

Has someone seen this before?  Thanks.

Steven

//map to appointment objects
foreach (DataRow row in events.Tables[0].Rows)
{
    DateTime startDate = (DateTime)row["Event_StartDate"];
    DateTime endDate = (DateTime)row["Event_EndDate"];
 
    if (startDate <= endDate)
    {
        AppointmentData apt = new AppointmentData();
        apt.Start = startDate;
        apt.End = endDate;
        //apt.Attributes.Add("ProgramName", row["ProgramName"].ToString());
        apt.Description = row["ProgramName"].ToString();
        apt.Subject = "<b>" + row["Event_Title"].ToString() + "</b><br><i>" + row["ProgramName"].ToString() + "</i>";
 
        //apt.Description = row["Event_Description"].ToString();
        apt.ID = row["EventId"].ToString();
 
        if (!addedAppts.Contains(apt.ID.ToString()))
        {
            appts.Add(apt);
            addedAppts.Add(apt.ID.ToString());
        }
    }
}

1 Answer, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 10 Aug 2010, 09:45 AM
Hi Steven Fischer,

I tried to reproduce your case but in vain. In what browser does this happen?

Could you please send us the full code so we can inspect it and help you? You should open a support ticket and attach it there.

Thank you!

Best wishes,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
Steven Fischer
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Share this question
or