Our pure JavaScript Scheduler component


Post by melazhadi »

I have displayed my own form instead of the default form and I want the actions (addition, deletion, modification, ...) to be applied on the scheduler

Post by mats »

Please ask questions normally, with context and full description of your problem.

Post by melazhadi »

as I already said we changed the event entry form to our custom input form

now my problem is that i want when i click for example on the button add the event the event it appears on the scheduler same operation for the modification and deletion

is that clear? thanks

Post by mats »

Look at Store class, it has 'add' method, so call it on your eventStore:

https://bryntum.com/docs/scheduler/#Com ... nction-add

And model class has setters for your fields so just set the fields as you desire
yourTask.name = 'foo';

Post Reply