RadzenGrid sorting properties with same name

Hello @Team.

There is a bug when sorting properties with the same name, even though the full relative name is specified. Code sample:

<RadzenGridColumn Property="Name" TItem="Entity" Title=@(Language.GetTextType(LanguageService.TextType.Name))/>
<RadzenGridColumn Property="Group.Name" TItem="Entity" Title=@(Language.GetTextType(LanguageService.TextType.Group))/>
public class Entity {
    public string Name { get; set; }
    public Group Group { get; set; }
}
public class Group {
    public string Name { get; set; }
}

Notice by the arrows that the sorting gets confused:

Sorting bug

Thanks @kim! We will include fix for this in the next update early next week.

1 Like