Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by cristhian on Jan 21, 2010 07:53
open dhtmlx forum
get id

how to get the id of an event created and use this id for use in a php variable
Answer posted by Alex (support) on Jan 21, 2010 08:28

id of new event can be got from onEventAdded event handler

scheduler.attachEvent("onEventAdded",function(event_id){

     /*your code here*/

     return true

})