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

Find Panel

  • 3 minutes to read

Overview

The grid can display a find panel that enables users to search for keywords in data.

FindPanelFilterBehavior

Note

Run the XtraGrid demo to see the find panel in action.

Keyboard operations

Filter and Search modes

  • press Ctrl+F to open the find panel
  • press Esc once to clear the panel, press it again to close it
  • press the Down Arrow key to move focus from the panel to the grid

Search mode only

  • press F3/Enter to go to the next result
  • press Shift/Alt/Ctrl+F3/Enter to go to the previous result

Note

A detail view should be maximized to allow searching its records.

Tip

The GridLookUpEdit does not support the find panel, use the SearchLookUpEdit.

Behavior: Search and Filter

You can specify how to show search results.

  • Filter — hides records that do not match the query, and highlights results in the view (optionally).
  • Search — highlights results in the view and on the scrollbar.

FindPanelBehavior_Filter FindPanelBehavior_Search

Use the following properties to specify how to show search results:

Options

Panel visibility

Highlight results

To specify whether search queries are highlighted, use the ColumnView.OptionsFind.HighlightFindResults property.

Specify search queries in code

Search Syntax

The search syntax may vary depending on the GridView.OptionsFind.ParserKind and GridView.OptionsFind.Condition properties. See Find Panel Syntax for more information.

Operation buttons

Use the following properties to show/hide the operation buttons.

Filter and Search modes

Filter mode only

Search mode only

Auto-apply search queries

After a user types in the search box, the search starts automatically or manually depending on the underlying data source. You can use use the ColumnView.OptionsFind.FindMode property to specify this behavior explicitly. The ColumnView.OptionsFind.FindDelay property allows you to specify the delay between entering a query and starting the search.

Server Mode Limitations

The find panel has the following limitations in the server mode:

See Also