Discuss anything related to web development but no technical support questions


Post by xjpmauricio »

Hi, is there a way i can programatically add events to a Scheduler store?

Here's how it goes: i have two schedulers, i remove one from the other but, the one i removed, i need him to stay on the original scheduler.
I know tha a store.reload() does the job but, it also refreshes the scheduler making it scroll back to the original position and i don't want that.
I know i can do a scroll back to previous position but that also is not good.

doesn't a simple store add record causes the record to appear as an event on the scheduler?

Any ideias?

Post by mats »

If you need it to stay in the source scheduler, just create a copy of the record values and insert a new record it in the other store. Doesn't that work for you? Doing add on a store will refresh the relevant row automatically.

Post by xjpmauricio »

Yes!!! i did that and it works!!!

Thanks!!!

Post Reply