GroupDescriptions loose the Custom Name after dragging.
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/.