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

ASPxGridBase.GetFilteredSelectedValues(String[]) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.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 whose values are returned.

Returns

Type Description
List<Object>

The list of objects that contain values displayed within the filtered selected data items.

Remarks

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

To get the values displayed within all selected data items (including those which do not match filter criteria) use the ASPxGridBase.GetSelectedFieldValues method.

See Also