New to Telerik UI for WPFStart a free 30-day trial

Child Hierarchy Blank Rows When Sorting or Scrolling RadGridView

Updated on Sep 15, 2025

Environment

Product Version2019.2 729
ProductRadGridView for WPF

Description

Rows are blank when sorting or scrolling the RadGridView control. This can also be observed for child rows when hierarchy is used.

Solution 1

Such issues may appear when using the default GroupRenderMode (Nested) of RadGridView. To resolve this, set GroupRenderMode to Flat.

XAML
	<telerik:RadGridView GroupRenderMode="Flat" />

Solution 2

Also, similar issues can occur when setting properties of the GridViewRow controls in code. For example:

GridViewRow row = GetRowMethod();

row.Visibility = Visibility.Collapsed; // or similar

To resolve this, avoid setting GridViewRow properties directly. Instead use the RowStyle property of RadGridView and data bind any properties you want.