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

ASPxGridBase.GetFilteredSelectedValues(String[]) Method

Returns the field values of selected data items (rows, cards or records) that match the filter criteria.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public List<object> GetFilteredSelectedValues(
    params string[] fieldNames
)

Parameters

Name Type Description
fieldNames String[]

The names of data source fields.

Returns

Type Description
List<Object>

The list of field values.

Remarks

The GetFilteredSelectedValues method allows you to get the values of selected data items (rows, cards, or records) that match the filter criteria.

To get the values of all selected data items, call the GetSelectedFieldValues(String[]) method.

For more information on row selection in a particular control, refer to the following topics:

See Also