BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Chong
Thanks for using Syncfusion products.
Query |
Response |
Is it possible to add a double click event on nodes that were added to a diagram? And also, if at all possible, trigger events when nodes/connectors are updated? (Connector connects to different node, triggers event to save). |
1.Drag event
This event fires when we drag the node. you can perform save operation in this event.
Code snippet: Diagram1.Model.Drag = "Dragging"; function Dragging() {
}
2.ConnectionChange event
This event fires when we connect connector to node.
Code snippet: Diagram1.Model.ConnectionChange = "connectionchange";
function connectionchange() {
}
3.TextChange event
This event fires after performing end edit the label.
Code snippet: Diagram1.Model.TextChange = "Textchanging"; function Textchanging(evt) {
}
4. NodeCollectionChange event
This event fires when we drop the node from palette.
Code snippet: Diagram1.Model.NodeCollectionChange = "nodeCollectionChange";
function nodeCollectionChange() {
}
|
We have attached sample below for your reference.
Please get back to us if any concerns.
Regards,
Shyam G
Hi Chong
Thanks for the update.
Currently we don’t have support for click and double click events in the server side. We consider this as a feature request and created a new incident 130057 on behalf of you related to this forum. We suggest you to follow up the incident for further reference using your direct trac account.
Please let us know if you have any concerns.
Regards,
Shyam G