Skip to main content

PickerColumn.ValueMember Property

Gets or sets the field name in the bound data source whose contents are assigned item values of the column’s picker control. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public string ValueMember { get; set; }

Property Value

Type Description
String

A String value that specifies the field name in a bound data source.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

A picker control which appears when a column cell is in the edit mode can be populated with items from a data source. To bind the picker to a data source, use the PickerColumn.ItemsSource property. The PickerColumn.DisplayMember and ValueMember properties specify the field names in the bound data source that supply display strings and item values, respectively.

Example

This example demonstrates how to implement the grid’s PickerColumn whose items are coming from the grid’s underlying data source.

In this example, a grid is bound to a collection of the Order objects. Each order contains information about a customer (the CustomerId property). A customer is represented by a Customer object that has the Id and Name properties. Customer objects are stored in an IList collection. The following properties of the PickerColumn object are set to show customer names for orders in this column within the grid (see the MainPage.xaml file):

PickerColumn_Example

See Also