aspnet-devexpress-dot-web-a60164b5.md
Lists the values that specify the selection behavior for a list editor.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum ListEditSelectionMode
Public Enum ListEditSelectionMode
| Name | Description |
|---|---|
Single |
Only one list box item can be selected at once.
|
| Multiple |
Multiple items can be selected within the editor by clicking list items while pressing Ctrl (to add an individual item) or Shift (to select a range of items).
|
| CheckColumn |
Multiple items can be selected within the editor by clicking specific check boxes or list items (the Shift key can also be used in this mode to select a range of items).
|
The following properties accept/return ListEditSelectionMode values:
The ListEditSelectionMode enumerator contains values specifying how items can be selected within a list editor.
Note
In multiple selection mode, all list items are always sent to the client, and loading items on demand via callbacks is not supported. Setting the editor’s EnableCallbackMode and CallbackPageSize properties is not in effect.
See Also