Search
DiagramView.AutoPostBack Property
See Also
 





Gets or sets a value indicating whether the control automatically posts back to the server when the user interacts with it.

Namespace: MindFusion.Diagramming.WebForms
Package: MindFusion.Diagramming.WebForms

 Syntax

C#  Copy Code

public bool AutoPostBack { get; set; }

Visual Basic  Copy Code

Public Property AutoPostBack As Boolean

 Property Value

true to enable automatic postback mode, otherwise false. The default value is false.

 Remarks

If this property is enabled, the page is posted back after user interaction and the control raises server side events in Canvas mode. This is supported for the NodeCreated, LinkCreated, NodeModified, LinkModified, NodeDeleted, LinkDeleted, NodeDeleting and LinkDeleting events. If any of their client side *Script counterparts is set, it overrides the post-back processing and the respective server event is not raised. Deleted and Deleting events are processed together, and they must be handled either both on server or both on client side.

 See Also