Skip to main content
Tab

ASPxGridSearchPanelSettings.AllowTextInputTimer Property

Specifies whether a search panel filter is applied automatically or manually.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool AllowTextInputTimer { get; set; }

Property Value

Type Default Description
Boolean true

true if a search panel filter is applied automatically after a specified the time period, false if a search panel filter is applied manually.

Remarks

The grid applies the search panel’s filter automatically after the time period specified by the ASPxGridSearchPanelSettings.Delay property has elapsed.

Use the the AllowTextInputTimer property to disable the time delay. In this case, an end user can click the Search button or press the ENTER key to apply the entered criterion.

Example

Web Forms (In markup):

<dx:ASPxGridView ID="Grid" runat="server" >
    ...
    <SettingsSearchPanel Visible="true" AllowTextInputTimer="false" />
</dx:ASPxGridView>

Web Forms (in code):

ASPxGridView grid1 = new ASPxGridView();
grid1.ID = "grid1";
Page.Form.Controls.Add(grid1);
...
grid1.SettingsSearchPanel.Visible = true;
grid1.SettingsSearchPanel.AllowTextInputTimer = false;

MVC:

@Html.DevExpress().GridView(settings => {
    settings.Name = "grid";
    settings.SettingsSearchPanel.Visible = true;
    settings.SettingsSearchPanel.AllowTextInputTimer = false;
    ...
}).Bind(Model).GetHtml()

Concept

GridView:

CardView:

VerticalGrid:

TreeList:

Online Demos

GridView:

CardView:

Vertical Grid:

Tree List:

See Also