Skip to main content
All docs
V25.1
  • DxDateTimeOffsetMaskProperties.UpdateNextSectionOnCycleChange Property

    Specifies whether the editor updates the value of the next mask section after the current section’s value passes the maximum or minimum threshold.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(false)]
    [Parameter]
    public bool UpdateNextSectionOnCycleChange { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to update the value of the next mask section; otherwise, false.

    Remarks

    Date-time offset masks can include multiple sections (for instance, the month and day sections). Users can enter a required value directly into a mask section or use the Up and Down arrow keys (or the mouse wheel) to increase or decrease this section’s value to the desired value.

    Set the UpdateNextSectionOnCycleChange property to true to increase or decrease the value of the next mask section after the current section’s value passes the maximum or minimum threshold:

    Date-Time Masks Change Section Values Along the Chain

    <DxDateEdit @bind-Date="@date" 
                Mask="@DateTimeMask.ShortDate">
        <DxDateTimeOffsetMaskProperties UpdateNextSectionOnCycleChange="true" />
    </DxDateEdit>
    
    @code {
        DateTimeOffset date { get; set; } = DateTimeOffset.Now;
    }
    

    Refer to the following topic for more information: Mask Settings.

    See Also