ASPxListBox.EnableSelectAll Property
Gets or sets whether selecting all items within a list box is available.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
Note that the EnableSelectAll property is in effect if the ASPxListBox.SelectionMode property is set to ListEditSelectionMode.CheckColumn.
<dx:ASPxListBox ID="ASPxListBox1" runat="server" SelectionMode="CheckColumn" EnableSelectAll="true" Width="250" Height="210"
DataSourceID="Features" ValueField="ID" ValueType="System.String" TextField="Name" Caption="Phone features">
...
</dx:ASPxListBox>
Online demo: List Box with Multiple Selection
See Also