Our state of the art Gantt chart


Post by mv2022 »

Hello,

When dragging and dropping a task, the WBS code does not seem to update correctly.
I've attached an image and this issue occurs in the demo as well.

Thanks

Attachments
WBS_Gantt.PNG
WBS_Gantt.PNG (44.98 KiB) Viewed 142 times

Post by tasnim »

Hi,

It seems to be working fine with the latest version 5.3 here https://bryntum.com/products/gantt/examples/advanced/
What version are you using? if you're using an older version upgrading should fix the issue

Good Luck :),
Tasnim


Post by mv2022 »

Hi Tasnim,

Please try the inline data demo https://bryntum.com/products/gantt/examples/frameworks/angular/inline-data/dist/inline-data/

If you do a drag and drop of the task, the WBS code does not update. If you do a copy & paste a task this seems to update the WBS code. Problem only occurs when users are dragging and dropping.


Post by marcio »

Hey mv2022,

Thanks for clarifying that, I was able to reproduce that, and created a ticket to investigate/fix it https://github.com/bryntum/support/issues/6393

Best regards,
Márcio


Post by mats »

If you want your WBS codes auto-updated, please set wbsMode "auto" on your taskStore:

project : {
        // Let the Project know we want to use our own Task model with custom fields / methods
        taskModelClass : Task,
        transport      : {
            load : {
                url : '../_datasets/launch-saas.json'
            }
        },
        autoLoad  : true,
        taskStore : {
            wbsMode : 'auto'
        },
        // The State TrackingManager which the UndoRedo widget in the toolbar uses
        stm : {
            autoRecord : true
        },
        // Reset Undo / Redo after each load
        resetUndoRedoQueuesAfterLoad : true
    },

Post Reply