Skip to main content
A newer version of this page is available. .
Tab

ASPxGridSearchPanelSettings.AllowTextInputTimer Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

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.

Property Paths

You can access this nested property as listed below:

Show 20 property paths
Library Object Type Path to AllowTextInputTimer
ASP.NET Controls and MVC Extensions ASPxCardView
.SettingsSearchPanel.AllowTextInputTimer
ASPxGridView
.SettingsSearchPanel.AllowTextInputTimer
ASPxTreeList
.SettingsSearchPanel.AllowTextInputTimer
ASPxVerticalGrid
.SettingsSearchPanel.AllowTextInputTimer
GridViewProperties
.SettingsSearchPanel.AllowTextInputTimer
CardViewSettings
.SettingsSearchPanel.AllowTextInputTimer
CardViewSettings<CardType>
.SettingsSearchPanel.AllowTextInputTimer
GridViewSettings
.SettingsSearchPanel.AllowTextInputTimer
GridViewSettings<RowType>
.SettingsSearchPanel.AllowTextInputTimer
MVCxCardView
.SettingsSearchPanel.AllowTextInputTimer
MVCxGridView
.SettingsSearchPanel.AllowTextInputTimer
MVCxGridViewProperties
.SettingsSearchPanel.AllowTextInputTimer
MVCxTreeList
.SettingsSearchPanel.AllowTextInputTimer
MVCxVerticalGrid
.SettingsSearchPanel.AllowTextInputTimer
TreeListSettings
.SettingsSearchPanel.AllowTextInputTimer
TreeListSettings<RowType>
.SettingsSearchPanel.AllowTextInputTimer
VerticalGridSettings
.SettingsSearchPanel.AllowTextInputTimer
VerticalGridSettings<ColumnType>
.SettingsSearchPanel.AllowTextInputTimer
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsSearchPanel.AllowTextInputTimer
BootstrapGridView
.SettingsSearchPanel.AllowTextInputTimer

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

WebForms (declaratively):

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

WebForms (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