Version

Stop the WebSchedule Views from Synchronizing

As navigation within the WebSchedule™ elements takes place, the ActiveDay property of WebScheduleInfo™ is updated accordingly so that the ActiveDay is always visible within the user interface. If multiple view elements are connected to a common WebScheduleInfo element on the page, then, by default, all elements are synchronized to the same active day as the user navigates from one month, week or day to the next.

If no synchronization is desired, set the WebScheduleInfo ActiveDayClientSynchronization property to ActiveDayClientSynchronization.None .

The following code snippet shows how you can set the ActiveDayClientSynchronization property in code.

images\WebSchedule How to Stop the WebScheduleViews from Synchronizing 01.png

In Visual Basic:

Imports Infragistics.WebUI.WebSchedule
...
Private Sub Page_Load(ByVal sender As System.Object, ByVal e _
  As System.EventArgs) Handles MyBase.Load
	Me.WebScheduleInfo1.ActiveDayClientSynchronization = _
		ActiveDayClientSynchronization.None
End Sub

In C#:

using Infragistics.WebUI.WebSchedule;
...
private void Page_Load(object sender, System.EventArgs e)
{
	this.WebScheduleInfo1.ActiveDayClientSynchronization =
		ActiveDayClientSynchronization.None;
}