Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    DxGrid.SearchBoxInputDelay Property

    Specifies the time interval between the last typed character in the search box and the consequent search text update.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    #Declaration

    C#
    [DefaultValue(1200)]
    [Parameter]
    public int SearchBoxInputDelay { get; set; }

    #Property Value

    Type Default Description
    Int32 1200

    The time interval, in milliseconds.

    #Remarks

    When the ShowSearchBox property is set to true, the Grid displays the search box. Users can type text in the box editor to locate data. Use the SearchBoxInputDelay property to adjust the time interval between the last character typed into the search box and the consequent search text update. Alternatively, a user can press the Enter key or move focus from the editor to update the search text immediately.

    Razor
    <DxGrid Data="@Data" ShowSearchBox=true SearchBoxInputDelay="2000">
        <Columns>
            <DxGridDataColumn FieldName="ContactName" />
            <DxGridDataColumn FieldName="CompanyName" />
            <DxGridDataColumn FieldName="City" />
            <DxGridDataColumn FieldName="Country" />
        </Columns>
    </DxGrid>
    

    Search Box Overview

    For more information about search in the Grid component, refer to the following topic: Search Box in Blazor Grid.

    See Also