Search found 1709 matches

Hello, A store by default doesn't re-apply filters on records adding. Try adding this code after the view store before setting the filter: resourceUtilization.store.reapplyFilterOnAdd = true; I've made a ticket to enable it by default on the class: https://github.com/bryntum/support/issues/8963 Than...
Hello, The project startDate is a required value based on which all tasks are scheduled. The tasks are scheduled ASAP given the earliest possible date is the project start. So moving the date causes moving of the project tasks (this is what you reported in this post). It's meant to be provided ..if ...

Ok I'm glad it works. Here is a ticket I've made for the issue: https://github.com/bryntum/support/issues/8956
Thank you for the feedback!

Actually I think I know what could happen. Please check if this workaround helps you and let me know: new TimelineHistogram({ listeners : { beforeRenderHistogramRow({ source, record, histogramConfig }) { const { data } = histogramConfig; // if previous calculated bar widths is not up-to-date if (sou...
Hello, In the attached images in both cases I am providing TimeLineHistogram the exact same 4 series data points, but as you can see, they are displayed very differently. We need a test case to reproduce this or steps how this can be reproduced on some of our demos. Otherwise it's hard to guess what...

A project data bulk copying is trivial BTW:

const project2 = new ProjectModel();

project2.loadInlineData(project.inlineData);

A bit tricky part is to make them keep the data sync. But this is also solvable.

Hello f you apply filters to project.resourceStore then those filters affect resource utilization as well Yes and this is how it's meant to work at the moment. If you want to filter Scheduler rows - chain scheduler.store = project.resourceStore.chain() and then filter it. If you apply filters to ori...
Hello, It can be done like this (adding BaselineStartDateColumn columns for first three baselines): const gantt = new Gantt({ columns : [ { type : 'addnew', processComboStoreConfig({ config, column }) { // Add new custom columns to the combobox config.data.push({ text : 'Baseline 1 Start', // column...
Hello, The Gantt schedules tasks to take their ASAP dates (or ALAP if the project is scheduled backwards). So if you want a task to start later you need to enforce this with a constraint. To give it a reason to be at that date. Start/end dates are calculated values for the Gantt. Try providing Start...

Here is a ticket for the bug: https://github.com/bryntum/support/issues/8902
Thank you for the report!