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

InfiniteAsyncSource.GetUniqueValues Event

Allows you to get unique values.

Namespace: DevExpress.Xpf.Data

Assembly: DevExpress.Xpf.Core.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public event EventHandler<GetUniqueValuesAsyncEventArgs> GetUniqueValues

Event Data

The GetUniqueValues event's data class is GetUniqueValuesAsyncEventArgs. The following properties provide information specific to this event:

Property Description
Filter Gets the GridControl‘s filtering. Inherited from GetUniqueValuesEventArgsBase.
PropertyName Gets the property name. Inherited from GetUniqueValuesEventArgsBase.
Result Gets or sets the result of the get unique values operation (only values).
ResultWithCounts Gets or sets the result of the get unique values operation (values and their counts).

Remarks

Handle the GetUniqueValues event to show unique values in a column’s drop-down filter. You can also show counts of these values.

To show only unique values, get a list of these values and specify the GetUniqueValuesAsyncEventArgs.Result property.

To show unique values with their counts, get a list of these values with counts and specify the GetUniqueValuesAsyncEventArgs.ResultWithCounts property.

source.GetUniqueValues += (o, e) => {
    if (e.PropertyName == "User") {
        e.ResultWithCounts = Task.Run(() => {
            return GetIssueDataQueryable().DistinctWithCounts(e.PropertyName);
        });
    } 
    e.Result = Task.Run(() => {
        return GetIssueDataQueryable().Distinct(e.PropertyName);
    });
};

In the code sample above, a data source implements the IQueryable interface. You can use the GridQueryableExtensions.Distinct and GridQueryableExtensions.DistinctWithCounts methods from the DevExpress.Xpf.Grid.20.2.Extensions.dll library to obtain unique values.

View Example

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetUniqueValues event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also