Check documentation for the latest version of dhtmlxSuite Event handling DHTMLX Docs

Event handling

DHTMLX Connector uses events to manage Insert/Update/Delete operations.

The code snippet below shows how to attach 'beforeUpdate' event:

connector.BeforeUpdate += new EventHandler<DataActionProcessingEventArgs>(
connector_BeforeUpdate
);
 
void connector_BeforeUpdate(object sender, DataActionProcessingEventArgs e)
{
   //custom code
}

Events list

Order of events execution

Back to top