Completed
Last Updated: 13 May 2014 08:39 by Jesse Dyck
ADMIN
Dimitar
Created on: 16 Aug 2013 03:22
Category: Scheduler/Reminder
Type: Bug Report
1
FIX. RadScheduler - Cell text overlaps the next cell.
To reproduce:
- Handle the CellFormatting event.
- Set CellElement Text property to a very long text.

Workaround:
Set CellElement MaxSize property like this:

void radScheduler1_CellFormatting(object sender, Telerik.WinControls.UI.SchedulerCellEventArgs e)
{
    e.CellElement.MaxSize =  new Size(150,23);
}
1 comment
Jesse Dyck
Posted on: 19 Aug 2013 04:11
This work around is not suitable for situation where resources number is changed dynamically.