Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1080
Save task which data is edit in grid
posted

Hi, I am trying to automaticaly save task to database when user change something in gantt's grid ? Everything is working fine when I add or delete task, because there are functions for that. I couldn't find any function which triggers on task data change, except Ultra Calendar Info changed.  Any suggestion ?

Parents
No Data
Reply
  • 53790
    Verified Answer
    posted

    Hello Divac,

     

    Maybe one possible approach could be if you handle ultraGanttView1_CellDeactivating() event and include there your code for database update. For example:

    private void ultraGanttView1_CellDeactivating(object sender, Infragistics.Win.UltraWinGanttView.CellDeactivatingEventArgs e)

    {

        dbTasksTableAdapter1.Update(testDataSet);

    }

     

    This event will fired after cell exit edit mode and all changes will be save in the DB. Please let me know if you think that I misunderstood your scenario or if you have any questions

    Regards

Children