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

ListEditProperties.TextField Property

Gets or sets the data source field that provides display texts for the editor’s items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value that specifies the name of the data source field from which the editor obtains item texts.

Remarks

If a list editor is data bound (via the ListEditProperties.DataSourceID or ListEditProperties.DataSource property), the editor populates its ListEditProperties.Items collection by retrieving items from the specified data source and obtaining item characteristics (such item texts, values or displayed images) from specific data fields. Use the TextField property to specify a data source’s field from which the item texts should be obtained.

Note

The TextField property synchronizes its value with the editor’s ASPxListEdit.TextField property.

Note

This property is not in effect for the editor’s multi-column mode.

See Also