Completed
Last Updated: 03 Jan 2017 12:59 by ADMIN
ADMIN
Hristo
Created on: 17 Nov 2015 11:57
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler - associating a scheduler with a navigator changes the text alignment of the time zone header cell
Workaround: 

private void radScheduler1_CellFormatting(object sender, Telerik.WinControls.UI.SchedulerCellEventArgs e)
{
    if (e.CellElement is SchedulerHeaderCellElement && e.CellElement.Text == "Local")
    {
        e.CellElement.TextAlignment = ContentAlignment.BottomLeft;
    }
}
Attached Files:
0 comments