Skip to main content
All docs
V24.1

GanttColumnHeaderFilterBuilder.SearchMode(CollectionSearchMode) Method

OBSOLETE

Use DataGrid search.mode, TreeList search.mode, or Gantt search.mode instead.

Specifies a comparison operation used to search header filter values. Mirrors the client-side searchMode option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

[Obsolete("Use DataGrid search.mode, TreeList search.mode, or Gantt search.mode instead.")]
public GanttColumnHeaderFilterBuilder SearchMode(
    CollectionSearchMode value
)

Parameters

Name Type Description
value CollectionSearchMode

The option value.

Returns

Type Description
GanttColumnHeaderFilterBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Gantt()
    .Columns(columns => {
        columns.Add().HeaderFilter(filter => filter
            .SearchMode(CollectionSearchMode.StartsWith)
        );
    })
)
See Also