Back to Devexpress

SchedulerPopupSettingsBase Class

blazor-devexpress-dot-blazor-0555a829.md

latest2.7 KB
Original Source

SchedulerPopupSettingsBase Class

Contains properties to customize the appearance of Scheduler’s appointment form (compact and standard) and tooltip.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public abstract class SchedulerPopupSettingsBase :
    ComponentBase,
    IDisposable

Remarks

Do not use the SchedulerPopupSettingsBase class in Razor markup. Instead, declare the PopupSettings tag with the following objects:

DxSchedulerCompactFormSettingsContains compact form settings.DxSchedulerFormSettingsContains settings for extended (pop-up) forms.DxSchedulerTooltipSettingsContains appointment tooltip settings.

The following example declares these objects to specify custom widths:

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerCompactFormSettings Width="600px" />
        <DxSchedulerFormSettings Width="1200px" />
        <DxSchedulerTooltipSettings Width="300px" />
    </PopupSettings>
</DxScheduler>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

Inheritance

Object ComponentBase SchedulerPopupSettingsBase DxSchedulerCompactFormSettings

DxSchedulerFormSettings

DxSchedulerTooltipSettings

See Also

SchedulerPopupSettingsBase Members

DevExpress.Blazor Namespace