Our pure JavaScript Scheduler component


Post by boyitech »

Greetings!

Currently after setting the editor property to ‘true’ in column, the editable item is in the form of an edit box, can I turn it into a select box?

Image


Post by tasnim »

Yes you can turn it into a select box by setting the editor type to combo

Here is an example

        {
            text   : 'Name',
            field  : 'name',
            flex   : 2,
            editor : {
                type     : 'combo',
                items : ['Siam', 'Joy', 'John'],
                required : true
            }
        }

Please check this combo docs https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo

Good Luck :),
Tasnim


Post Reply