Hello,
Workaround: Explicitly clear the group items
private void BtnClearClick(object sender, EventArgs e)
{
m_DataSource.Clear();
foreach (var group in this.radListView1.Groups)
{
group.Items.ResetListSource();
}
}
Regards,
Hristo
Progress Telerik