Completed
Last Updated: 19 Mar 2020 14:39 by ADMIN
Release R2 2020 (LIB 2020.1.323)
Tinus
Created on: 05 Mar 2020 12:12
Category: ListView
Type: Bug Report
0
RadListVIew: Improve the performance of the control when it is grouped and the data source is set
 
1 comment
ADMIN
Hristo
Posted on: 05 Mar 2020 12:15

Hi,

There are numerous updates in the layout. A possible workaround is to suspend the layout: 

  radListView1.ListViewElement.ViewElement.ViewElement.SuspendLayout();

  m_DataSource = null;
  m_DataSource = new BindingList<Person>();
  for (var i = 0; i < 400; i += 4)
  {
      // Add data
  }

  radListView1.DataSource = m_DataSource;
  radListView1.DisplayMember = "Name";
  radListView1.ValueMember = "ID";

  radListView1.ListViewElement.ViewElement.ViewElement.ResumeLayout(true);

Regards,
Hristo
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.