hi ,
I need to get the currently pointed events start , end time and section_id .
if I use on mousemove event, it can access only previously created event.
scheduler.attachEvent("onMouseMove", function(id, e) {
});
And I noticed the oneventpasted event , it can access the currently pointed events data ( in pasted_ev parameter )
scheduler.attachEvent("onEventPasted", function(isCopy, pasted_ev, original_ev) {
});
so please suggest me how to access the start,end time and section id of the currently pointed area.
waiting for your reply
thanks …