Is there any way to take a filtered RadGridView and create a corresponding dataset that can be passed to a Telerik report? How do I even get to the filter expression for the GridView? I have found examples of how to get the filter expression on a RadGrid but not a RadGridView. Thanks.
In the FilterExpressionChanged event for the GridView set the bindingsource filter to be the same as the gridview filter as shown here:
private void gvAssets_FilterExpressionChanged(object sender, FilterExpressionChangedEventArgs e)
{
vPHIScoresBindingSource.Filter = e.FilterExpression;
}
Then, when you call the report simply pass in the BindingSource as the dataset.