My intention is to use the 'DisplayValueHolder.DisplayValue' for the filter list user interface and 'DisplayHolder.ID' for creating a query which will return the filtered data.
public class DisplayValueHolder
{
public string ID{get;set;}
public string Value{get;set;}
}
Is it possible to use the GridView's 'DistinctValuesLoading' event to return a collection of objects like DisplayValueHolder which contains different values for display and the data?
Nikhil
public class DisplayValueHolder
{
public string ID{get;set;}
public string Value{get;set;}
}
Is it possible to use the GridView's 'DistinctValuesLoading' event to return a collection of objects like DisplayValueHolder which contains different values for display and the data?
Nikhil