Our state of the art Gantt chart


Post by matteopasqualin »

Hello,

is it possible to specify the order - index - of the tabs for the TaskEditor?
I added a custom Tab, but I would also set it just right after the main general Tab or other arbitrary position.
I tried with index property but with no luck.

Something like:

tabsConfig: {
        // change title of General tab
        generaltab: {
            title: 'generale',
            index : 0
        },
        advancedtab: {
            title: 'avanzate',
            index : 1
        },
        successorstab: {
            title: 'successivi',
            index : 2
        },
        predecessorstab: {
            title: 'precedenti',
            index : 3
        },

        resourcestab: {
            title: 'risorse',
            index : 4
        }
    }

Thanks a lot

Post by saki »

It is currently not configurable. I've created feature request: https://github.com/bryntum/support/issues/502

Post by matteopasqualin »

Hello Saki,

I see, thank you.

Post by mats »

You can use weight of tabs, like this:

features : {
        taskEdit : {
            items : {
                generalTab : {
                    weight : 1000,

Post Reply