Skip to main content
A newer version of this page is available. .

ISchedulerStateService.IsDataRefreshAllowed Property

Indicates whether the Scheduler data can be safely reloaded.

Namespace: DevExpress.XtraScheduler.Services

Assembly: DevExpress.XtraScheduler.v18.2.Core.dll

Declaration

bool IsDataRefreshAllowed { get; }

Property Value

Type Description
Boolean

True, if data refresh is allowed; otherwise, false.

Remarks

Check the IsDataRefreshAllowed property to determine the moment when the SchedulerControl does not apply any changes, so that its data can be safely reloaded.

The IsDataRefreshAllowed option tests the following properties internally:


isModalFormOpened || isInplaceEditorOpened || isAppointmentResized || isPopupMenuOpened || areAppointmentsDragged || isApplyChanges

We always recommend testing the IsDataRefreshAllowed property before manually executing the SchedulerStorageBase.RefreshData or SchedulerControl.RefreshData methods.

See Also