Hi,
In the following example I'm trying to update a grid based on changes made to Gantt fields.
protected void RadGantt1_OnTaskUpdate(object sender, TaskEventArgs e) {
gridProjects.DataBind();
}
It does not work as expected. Seems like the bound data source has not updated yet so grid still picks up old data. Is there something like an "AfterTaskUpdate" event?
Thank you.