Premium support for our pure JavaScript UI components


Post by shaveta »

Hi,

Is there a way/any tips to achieve backward scheduling? e.g. I want to make my project end date earlier and re-schedule all of the preceding tasks?

Thanks!!


Post by arcady »

ProjectModel has direction field that defines how tasks are scheduled:

{
    "project" : {
        "endDate" : "2023-03-29",
        "direction" : "Backward",
        ...
    },
    ....

or can be changed in runtime:

// change project to schedule ALAP
project.direction = "Backward";

Post Reply