aspnet-devexpress-dot-web-dot-listboxproperties.md
Setting this property to values from an untrusted source may introduce security-related issues, since the property value is not encoded and is rendered as HTML markup. Call the HttpUtility.HtmlEncode method to encode the value.
Review the following help topic to better protect websites from cross-site scripting (XSS) attacks: HTML Encoding.
Gets or sets the text (or tooltip) for the “Select All” check box in a list box.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("Select All")]
public string SelectAllText { get; set; }
<DefaultValue("Select All")>
Public Property SelectAllText As String
| Type | Default | Description |
|---|---|---|
| String | "Select All" |
A string value specifying the “Select All” check box’s text (or tooltip).
|
Use the SelectAllText property as follows:
To specify the text for the “Select All” check box if the list box has no columns.
To specify the tooltip for the “Select All” check box if the list box’s data is organized in columns.
Note that the SelectAllText property is in effect if the ListBoxProperties.SelectionMode property is set to ListEditSelectionMode.CheckColumn.
Online demo : List Box with Multiple Selection
See Also