Completed
Last Updated: 10 Sep 2015 09:22 by ADMIN
ADMIN
Dimitar
Created on: 17 Jul 2015 10:18
Category:
Type: Bug Report
0
FIX. RadListView - items overlap each other when the DataSource is repopulated.
To reproduce:
private void radButton1_Click(object sender, EventArgs e)
{
    this.nwindDataSet.Products.Clear();
    this.productsTableAdapter.Fill(this.nwindDataSet.Products);
    radListView1.DataSource = this.nwindDataSet.Products;
}

Workaround:
private void radButton1_Click(object sender, EventArgs e)
{
    this.nwindDataSet.Products.Clear();
    this.productsTableAdapter.Fill(this.nwindDataSet.Products);
    radListView1.DataSource = null;
    radListView1.DataSource = this.nwindDataSet.Products;
}

0 comments