Search found 8 matches

Customers want to schedule task time from the root node rather than from the leaf node
I want the start time of task to be arranged according to my own'Start Date', as long as the start time of'task'is not earlier than the start time of'project'. But when I set'constraintDate'as'startDate' for'project', the time for'task'to be displayed becomes'startDate' for'project'. If I set'constr...
If I use "manually Scheduled", how do I update all the affected data? How can "propagate ()" be used effectively?
If there is no other restrictions, project start date is a start point of the scheduling process. Tasks are scheduled as early as possible and they won't start earlier than the project start date. So you can remove all constraints you have. If you need a task to start a bit later than it's schedule...
node = Ext.first('ganttpanel').taskStore.getById(2); record = node.appendChild({ Name : 'Foo', StartDate : new Date(2017, 0, 23), ConstraintType : 'startnoearlierthan', // not strict constraint ConstraintDate : new Date(2017, 0, 20), Duration : 1, DurationUnit : 'd', leaf : true }); record.getStart...
oh, Thank you very much, it's ...
I want to make the start time of each task customizable, without affecting automatic scheduling, but not effective. It works only if you set manuallyScheduled to true, but that's not what I want.
My question is the same as the following one.But I didn't get a solution. https://forum.bryntum.com/viewtopic.php?f=52&t=11173&start=10 export default class Task extends TaskModel { constructor(arg) { super(arg); this.scheduleByConstraints = true; this.manualScheduled = true; this.contraintT...