Completed
Last Updated: 15 Feb 2021 11:02 by ADMIN
Release R1 2021 SP2
ADMIN
Peter
Created on: 13 Mar 2013 03:58
Category: PivotGrid
Type: Bug Report
2
FIX. RadPivotGrid - GroupDescriptions loose the Custom Name after dragging.
GroupDescriptions loose the Custom Name after dragging.
1 comment
ADMIN
Hristo
Posted on: 28 Jan 2021 16:41

Hi,

The issue is being investigated and we will provide a fix for it in our SP release after one month or in some of our internal libs.

Until then a possible workaround is to handle the PrepareDescriptionForField on the data provider:

private void Provider_PrepareDescriptionForField(object sender, PrepareDescriptionForFieldEventArgs e)
{
    if (e.Description.DisplayName == "Product" && e.Description is PropertyGroupDescription customDescription)
    {
        customDescription.CustomName = "CustomProduct";
    }
}

 

Regards,

Hristo
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.