Skip to main content
All docs
V24.1

DxListEditorColumn.SearchEnabled Property

Specifies whether the component can search text in cells of the current column.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Boolean true

true if search in the current column is enabled; otherwise, false.

Remarks

The List Box component can search text in visible data column cells, and filter and highlight search results. Use the SearchEnabled property to exclude a specific column from search operations.

The code below excludes the List Box’s second column from search.

<DxListBox TData=Person TValue=Person Data="Staff.DataSource"
            ShowCheckboxes="true"
            SearchText="Jo"
            SelectionMode="@ListBoxSelectionMode.Multiple">
    <Columns>
        <DxListEditorColumn FieldName="FirstName"></DxListEditorColumn>
        <DxListEditorColumn FieldName="LastName" SearchEnabled="false"></DxListEditorColumn>
        <DxListEditorColumn FieldName="Department"></DxListEditorColumn>
    </Columns>
</DxListBox>

Implements

See Also