Unplanned
Last Updated: 21 Feb 2019 08:27 by ADMIN
ADMIN
Dimitar
Created on: 11 Apr 2018 12:07
Category: GridView
Type: Bug Report
1
FIX. RadGridView - exception (stack overflow) when filtering a grouped self reference grid
To reproduce:
- Filter a self-referencing grouped grid. 

Workaround:
private void _rgvFreeCodeValues_FilterChanged(object sender, GridViewCollectionChangedEventArgs e)
{
    foreach (var row in RgvFreeCodeValues.Rows)
        row.IsExpanded = false;
}

private void _rgvFreeCodeValues_FilterChanging(object sender, GridViewCollectionChangingEventArgs e)
{
    foreach (var row in RgvFreeCodeValues.Rows)
        row.IsExpanded = true;
}
3 comments
ADMIN
Dimitar
Posted on: 21 Feb 2019 08:27
Hello Darko,

We have investigated the issue but fixing it requires making significant breaking changes in the existing functionality. At this point, we are not willing to make such changes because they will break the existing projects of our clients. We will continue to investigate this and try finding a solution to this issue. Currently, I cannot engage with a specific timeframe for the issue resolving.

Thank you for your understanding.

Regards,
Dimitar
Progress Telerik
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Darko
Posted on: 13 Feb 2019 14:15
Any update on this bug?
ADMIN
Dimitar
Posted on: 25 Apr 2018 08:26
Unable be fixed without changing Hierarchy behaviors. e.g. few key Self-reference cases such as missing Hierarchy rows.