GridLookupViewModel.IncrementalFilteringMode Property
In This Article
Gets or sets a value that specifies the filtering mode of the editor.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public IncrementalFilteringMode IncrementalFilteringMode { get; set; }
#Property Value
Type | Description |
---|---|
Incremental |
One of the Incremental |
Available values:
Name | Description |
---|---|
Contains | The editor filters items that contain the filter string. |
Starts |
The editor filters items that begin with the filter string. |
None | The editor does not filter items. |
#Remarks
GridLookup allows its items to be filtered within a drop down grid by typing text within the editor’s input box. Use the IncrementalFilteringMode property to specify the editor’s filter mode.
See Also