Our pure JavaScript Scheduler component


Post by tsarmf »

Hi,

I am woking on a Resize Event. Many events are repeated and it is important to ask user if he wants to apply changes to all those events.

When using context.async = true; i get mouse coursor stucked to an Event and continues to resize aldo dialog is present.
It is also a custom Popup.

Any advices?

Post by mats »

Can you please provide a test case?

Post by tsarmf »

Before i do that,

Can i ask you what would be best practice for that case.
To update single event in Event Store. Start and/or End Date. With user confirmation.

Post by mats »

Try adding this listener to your Scheduler:
beforeeventresizefinalize : function({ context }) {
            context.async = true;
            
            context.finalize(confirm('Please confirm'));
        },

Post by tsarmf »

Thanks,

That was really helpful.

Post Reply