Our state of the art Gantt chart


Post by radhakrishnan.y »

Hi
I want to update the task data when the task resize is end.
But it is keeping on calling when I tried to resize the taskbar
I have attached my code. Please check

Attachments
demo.zip
(101.64 KiB) Downloaded 25 times

Post by tasnim »

You need to listen to this event https://bryntum.com/docs/gantt/api/Gantt/feature/TaskResize#event-taskResizeEnd

Example

    listeners : {
      taskResizeEnd() {
        console.log('taskresize');
      }
    }

Post Reply