Hi, Im still working on my project that uses GanttView. Data are linked to sql server database using a dataset. My problem occurs when I try to add a child or sibling item, because the new item does not appear until the data are saved to db, and I query again.
Of course I'm using the 'ItemChildIdNeeded' event, to assign the correct id
integerIdCounter = My last Id...
Private Sub RadGanttView1_ItemChildIdNeeded(sender As Object, e As Telerik.WinControls.UI.GanttViewItemChildIdNeededEventArgs) Handles RadGanttView1.ItemChildIdNeeded
Me.integerIdCounter += 1
e.ChildId = Me.integerIdCounter
End Sub
What am I doing wrong?