Completed
Last Updated: 11 Jan 2016 10:48 by ADMIN
ADMIN
Hristo
Created on: 18 Dec 2015 12:34
Category: GanttView
Type: Bug Report
0
FIX. RadGanttView - when there is a selected item in the gantt and it is data bound to a DataTable, an exception is raised if you call the Fill method of the table
How to reproduce: refer to the attached project

Workaround: reset the data source
private void Button1_Click(object sender, EventArgs e)
{
	this.RadGanttView1.DataSource = null;

	//TODO: This line of code loads data into the 'WeddingPlannerDataSet.Tasks' table. You can move, or remove it, as needed.
	this.TasksTableAdapter.Fill(this.WeddingPlannerDataSet.Tasks);
	//TODO: This line of code loads data into the 'WeddingPlannerDataSet.Links' table. You can move, or remove it, as needed.
	this.LinksTableAdapter.Fill(this.WeddingPlannerDataSet.Links);

	this.RadGanttView1.GanttViewElement.DataSource = this.WeddingPlannerDataSet 
}
Attached Files:
0 comments