Premium support for our pure JavaScript UI components


Post by chrisb »

Hey guys,

Hopefully I'm just missing the option, but we have around 3000 tasks in our projects, and it seems that adding a predecessor or successor from the task editor has no way to search for a task (either by wbs or name) to add as a dependency. It's quite cumbersome to scroll through all the tasks.

Is there an option to enable this? I can filter in the predecessor or successor column in the gantt, but not the task editor.

Thanks

Chris


Post by mats »

Agree - we'll make this default behavior for 4.2.0! Ticket: https://github.com/bryntum/support/issues/3045

If you need this working today, you can flip this to true: https://bryntum.com/docs/gantt/#Core/widget/Combo#config-editable.

features : {
        taskEdit : {
            items : {
                predecessorsTab : {
                    items : {
                        grid : {
                            columns : {
                                data : {
                                    name : {
                                        editor : {
                                            editable : true
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    },

Also see https://bryntum.com/docs/gantt/#Core/widget/Combo#config-filterOperator


Post Reply