Our pure JavaScript Scheduler component


Post by omerkati »

Dear Bryntum team,

I would like to use this:

bryntum.com/docs/scheduler/api/Core/data/Model#function-set

method with an object and set it silently.

I tried:

record.set(Object, true)

but still other events were triggered. How would you call this method silently in this way?


Post by mats »

What's your use case for using 'silent'? And what events do you notice being triggered?


Post by omerkati »

I have two schedulers and one scheduler triggers the other to create a similar event with the same attributes. The event is the onChange event. Whenever an event is created I want to send a post request to our backend and it seem repetitive to call it twice. That is why I want to call it silently. Hope that clears things up


Post by alex.l »

Try this

record.set({props: values}, null, true)

All the best,
Alex


Post Reply