Unplanned
Last Updated: 14 Aug 2017 11:53 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 20 Jul 2017 07:57
Category: GanttView
Type: Bug Report
2
FIX. RadGanttView - incorrect RowState of the DataBoundItem
To reproduce: please refer to the attached sample project. Try to edit the title for one of the child tasks in the grid and click the 

Workaround:

private void radGanttView1_ItemChanged(object sender, Telerik.WinControls.UI.GanttViewItemChangedEventArgs e)
{
    IEditableObject editebleObejct = e.Item.DataBoundItem as IEditableObject;
    if (editebleObejct != null)
    {
         editebleObejct.EndEdit();
    }
}
0 comments