Our state of the art Gantt chart


Post by cllor »

Would like to check how to remove the Notes tab from the task editor?


Post by mats »

Please study: https://bryntum.com/docs/gantt/#Gantt/guides/customization/taskedit.md

const gantt = new Gantt({
    features : {
        taskEdit : {
            items : {
                generalTab      : {
                    items : {
                        // Remove "% Complete","Effort", and the divider in the "General" tab
                        percentDone : false,
                        effort      : false,
                        divider     : false
                    }
                },
                // Remove all tabs except the "General" tab
                notesTab        : false,
                predecessorsTab : false,
                successorsTab   : false,
                resourcesTab    : false,
                advancedTab     : false
            }
        }
    }
})

Post by cllor »

Thanks Mats. It is working now.


Post Reply