DxSchedulerFormSettings.ApplyBackgroundShading Property
Specifies whether to shade the background when the extended (pop-up) appointment form appears.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool ApplyBackgroundShading { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
When the pop-up appointment form appears, the area under it is greyed out.
Set the ApplyBackgroundShading
option to false
to disable background shading.
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage"
CssClass="my-scheduler">
<Views>
<DxSchedulerDayView ShowWorkTimeOnly="true" />
</Views>
<PopupSettings>
<DxSchedulerFormSettings ApplyBackgroundShading="false" />
</PopupSettings>
</DxScheduler>
See Also