Our pure JavaScript Scheduler component


Post by abisht »

How can we increase the width of the dropdown in bryntum scheduler inline edit?
please check the below screenshot

Screenshot 2022-06-23 at 5.24.41 PM.png
Screenshot 2022-06-23 at 5.24.41 PM.png (122.78 KiB) Viewed 133 times

Post by tasnim »

You need to set the https://bryntum.com/docs/scheduler/api/Core/widget/Combo#config-pickerWidth

Here is an example :

new Combo({
    items    : ['Fanta', 'Loranga', 'Jaffa', 'Zingo', 'Orangina'],
    label    : 'Items as strings',
    appendTo : targetElement,
    pickerWidth : 500,
    style    : { marginRight : '.5em' }
});

Post Reply