Skip to content

DevExpress-Examples/winforms-gridlookupedit-multiple-item-selection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms Grid Lookup - How to select multiple items

The WinForms GridLookUpEdit control does not support multiple item selection out of the box. This example demonstrates how to implement a "custom" Grid Lookup editor that allows users to select multiple values (rows) in its drop-down window.

The Grid Lookup editor is implemented based on a PopupContainerEdit control that displays a GridControl in the drop-down window.

The Grid Lookup editor's value is a string in CSV format. You can type comma-separated values (for example, "Name0, Name2, Name4") in the edit box to select corresponding rows in the dropdown. Users can also select rows in the dropdown. When the dropdown is closed, the Grid Lookup editor displays selected row values in the edit box.

WinForms LookUpEdit v.23.1+ Supports Multiple Item Selection

Read the following help topic for more information and examples: LookUpEdit - Enable Multiple Item Selection.

Files to Review

Documentation

See Also