Our pure JavaScript Scheduler component


Post by dkharouf »

Hello,

Would it be possible to copy the nested event with all the events inside ?

Would it be possible to copy several events at the same time ?

Thanks,

Regards,

copy_nested.png
copy_nested.png (33.43 KiB) Viewed 140 times
copy vents.png
copy vents.png (18.61 KiB) Viewed 140 times

Post by marcio »

Hey dkharouf,

Yes, we have https://www.bryntum.com/docs/scheduler-pro/api/Scheduler/view/mixin/EventSelection#config-multiEventSelect

You can check an example here https://www.bryntum.com/examples/examples-scheduler/basic/

Just as an example

const scheduler = new Scheduler({
    appendTo         : 'container',
    resources        : resources,
    events           : events,
    startDate        : new Date(2017, 0, 1, 6),
    endDate          : new Date(2017, 0, 1, 20),
    viewPreset       : 'hourAndDay',
    rowHeight        : 50,
    barMargin        : 5,
    multiEventSelect : true,
    columns          : [
        { text : 'Name', field : 'name', width : 130 }
    ]
});

Best regards,
Márcio


Post Reply