Back to Devexpress

DxScheduler.PopupSettings Property

blazor-devexpress-dot-blazor-dot-dxscheduler-adbeab9b.md

latest1.9 KB
Original Source

DxScheduler.PopupSettings Property

Specifies settings for pop-up Scheduler elements (extended and compact appointment forms and tooltips).

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public RenderFragment PopupSettings { get; set; }

Property Value

TypeDescription
RenderFragment

The settings collection.

|

Remarks

Use the PopupSettings tag to declare 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>

See Also

DxScheduler Class

DxScheduler Members

DevExpress.Blazor Namespace