Hi, i nedd help, i have to add links at events, when someone click at events it call a page html and send at this page the id, start_date, and end_date.
please could you help me?
Hi, i nedd help, i have to add links at events, when someone click at events it call a page html and send at this page the id, start_date, and end_date.
please could you help me?
Do you really need the link ? The next can do the same for plain click on event
scheduler.attachEvent("onclick", function(id){
var ev = scheduler.getEvent(id);
document.location.href="some.php?id="+ev.id;
})
yes, that´s i want and this example is perfect, thank you for your fast help