URGENT_"drag and drop" not working

hello,

many thanks for your great help…

i want to ask about the drag and drop functionality of events…
i can drag and drop an event but it’s only on the screen…when the page refreshes…it come back to it’s original position like nothing happened…!!

could you please explain how to configure this functionality step by step…??

best regards,
m_mousa

hi,
did you initialize dataprocessor? it should monitor all changes and send update requests to the server, no additional configuration needed

scheduler.init('scheduler_here');

dp = new dataProcessor("update.php");
dp.init(scheduler);
dp.setTransactionMode("POST", false);

scheduler.load("data.php");

the issue is the used events…which events i should handle…??
onBeforeDrag…??
or which ones??

it’s onBeforeEventChanged event,
but there is really no need to handle it manually, dataprocessor was designed specifically for such tasks,
also you may check this article

docs.dhtmlx.com/doku.php?id=dhtm … #connector