Unplanned
Last Updated: 29 Mar 2016 11:56 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 28 Dec 2015 10:55
Category:
Type: Bug Report
0
FIX. RadDataLayout - visual glitch when resizing RadDataLayout and the DataSource is changed
To reproduce: the attached gif file illustrates the behavior.

public Form2()
{
    InitializeComponent();

    this.radGridView1.DataSource = this.customersBindingSource;
    this.radGridView1.CellClick += radGridView1_CellClick;
}

private void radGridView1_CellClick(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
{
    this.radDataLayout1.DataSource = e.Row.DataBoundItem;
    this.radDataEntry1.DataSource = e.Row.DataBoundItem;
}

private void Form2_Load(object sender, EventArgs e)
{
    // TODO: This line of code loads data into the 'nwindDataSet1.Customers' table. You can move, or remove it, as needed.
    this.customersTableAdapter.Fill(this.nwindDataSet1.Customers);
}

Attached Files:
0 comments