ListBoxProperties.EnableSelectAll Property
Gets or sets whether selecting all items within a list box is available.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
Note that the EnableSelectAll property is in effect if the ListBoxProperties.SelectionMode property is set to ListEditSelectionMode.CheckColumn.
@Html.DevExpress().ListBox(
settings => {
...
settings.Properties.EnableSelectAll = true;
...
}
).BindList(Model).GetHtml()
Online demo: List Box - Features
See Also