Skip to main content
A newer version of this page is available. .
Tab

ASPxComboBox.NullValueItemDisplayText Property

Gets or sets the display text for the item whose value is null.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("")]
public string NullValueItemDisplayText { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies the text displayed within the item whose value is null.

Remarks

Use the NullValueItemDisplayText property to specify the text displayed within the item whose value is null. If the NullValueItemDisplayText property is not specified, the NullValueItemDisplayText property value equals the ASPxAutoCompleteBoxBase.TextFormatString property value.

Note

The NullValueItemDisplayText property is in effect if the combo box contains multiple columns.

the following example illustrates how to use the NullValueItemDisplayText property.


var dataSource = new[]
    {
      new {  Column1 = (String)null, Column2 = (String)null, Column3=(String)null },
      new {  Column1 = "1", Column2 = "2", Column3="3" },
      new {  Column1 = "4", Column2 = "5", Column3="6" },
      new {  Column1 = "7", Column2 = "8", Column3="9" },
    };

    this.ASPxComboBox1.DataSource = dataSource;
    this.ASPxComboBox1.DataBind();

ComboBox-NullValueItemDisplayText

See Also