afterCellsAdd
Description
Fires after new cells are added to a swimlane
Usage
afterCellsAdd: (swimlaneId: string | number) => void;
Parameters
The callback of the event takes the following parameter:
swimlaneId
- (required) the id of the item
Example
// initializing Diagram
const diagram = new dhx.Diagram("diagram_container", {
type: "default"
});
// loading data
diagram.data.parse(data);
// attaching a handler to the event
diagram.events.on("afterCellsAdd", (swimlaneId) => {
console.log(swimlaneId);
});
Change log: Added in v4.0
Related articles: Configuring Swimlanes