Search found 1706 matches

Hello, The Gantt MspExport feature does not export those values at the moment. The reason is our data model has no strict one-to-one mapping with them. But if you need them to be provided now you can workaround them: // set listener on Gantt construction step const gantt = new Gantt({ --- features :...
Hello Then On Scheduling Cycle Popup window, when I click on the Apply button, the sync should trigger. If there is really no workaround, please give me confirmation so that from our end we can just do a workaround like manually deleting those records from the backend, then we can both move on. You ...
Hello, Disabling silenceInitialCommit is triggering sync automatically on page load when there is scheduling cycle records. The sync passes all dependency Ids even those with no scheduling cycle issue then this caused the backend to delete all dependency records. We can't reproduce this and I'm afra...
Hello, One thing that can help you on UI level is getDateConstraints function: const gantt = new Gantt({ // This method lets you constrain UI interactions like task drag drop and resizing getDateConstraints(taskRecord) { const { minStartDate, maxEndDate } = taskRecord; return { start : minStartDate,...
Hello, Normally all such changes are mentioned in the corresponding "Upgrade guide" shipped with the distribution. But I don't see it's mentioned in the guide shipped w/ Gantt v5.3.0: https://bryntum.com/products/gantt/docs/guide/Gantt/upgrades/5.3.0 I don't know how it managed passing rev...

Yes that's correct negative values are also supported.

Hello, I tried to downgrade our version of Gantt to 5.2.9 and the code is still working without any issues. Yes you are right that it worked in a different way previously. The main reason is we had no implemented calendars persisting till v5.3.0. In that version we changed intervals field definition...
Hello, Date constraints provided by the Gantt are implemented on the scheduling engine level. But on the engine level an auto-scheduled parent task that restricts its children with its start/end dates will naturally cause a scheduling cycle. Since auto-scheduled parent task dates are built based on ...
The difference is Scheduler Pro behind the scenes uses a scheduling engine. Which schedules events based on dependencies/constraints/calendars etc. While in basic Scheduler dependencies are just visual lines that do not affect event positions really. Ideally we need to be able to control how much an...