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

RepositoryItemGridLookUpEdit.AutoSearchComplete Event

Fires when a search in AutoSearch mode completes.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DXCategory("Events")]
public event LookUpEditAutoSearchCompleteEventHandler AutoSearchComplete

Event Data

The AutoSearchComplete event's data class is DevExpress.XtraEditors.Controls.LookUpEditAutoSearchCompleteEventArgs.

Remarks

If the SearchMode property is set to AutoSearch, the editor automatically filters data source records in the drop-down window when the user enters a query in the edit box. The AutoSearch event fires before the data records are filtered and allows you to customize filter settings. The AutoSearchComplete event fires after the data records are filtered and allows you to perform custom actions. For example, you can automatically select a row or adjust the drop-down window height.

The GridLookUpEdit.AutoSearchComplete event is equivalent to the GridLookUpEdit.Properties.AutoSearchComplete event.

Example

In AutoSearch mode, the editor does not automatically select the first row that fits the entered query. If the search results contain only one row, you can handle the GridLookUpEdit.AutoSearchComplete event to automatically select this row as the code below demonstrates.

using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Views.Grid;

private void GridLookUpEdit1_AutoSearchComplete(object sender, DevExpress.XtraEditors.Controls.LookUpEditAutoSearchCompleteEventArgs e) {
    GridLookUpEdit edit = sender as GridLookUpEdit;
    GridView view = edit.Properties.View;
    if (view.RowCount == 1) {
        view.FocusedRowHandle = 0;
        gridLookUpEdit1.EditValue = view.GetFocusedRowCellValue(gridLookUpEdit1.Properties.ValueMember);
        gridLookUpEdit1.ClosePopup();
    }
}
See Also