Hi,
I have a long HeaderFormat string for day view but when I change the ActiveView I would like to change the HeaderFormat to a shorter string such as mm/dd. I tried this in the ActiveViewChanged by doing the following without any luck.
Is it possible to do this?
Thank you.
David
I have a long HeaderFormat string for day view but when I change the ActiveView I would like to change the HeaderFormat to a shorter string such as mm/dd. I tried this in the ActiveViewChanged by doing the following without any luck.
Is it possible to do this?
Thank you.
David
private void Scheduler_ActiveViewChanged(object sender, SchedulerViewChangedEventArgs e) { if (e.NewView.ViewType == SchedulerViewType.Week) Scheduler.GetWeekView().HeaderFormat = "mm/dd"; }