Back to Devexpress

ASPxDiagram.ClientInstanceName Property

aspnet-devexpress-dot-web-dot-aspxdiagram-dot-aspxdiagram.md

latest2.7 KB
Original Source

ASPxDiagram.ClientInstanceName Property

Specifies the ASPxDiagram‘s programmatic identifier on the client.

Namespace : DevExpress.Web.ASPxDiagram

Assembly : DevExpress.Web.ASPxDiagram.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue("")]
public string ClientInstanceName { get; set; }
vb
<DefaultValue("")>
Public Property ClientInstanceName As String

Property Value

TypeDefaultDescription
StringString.Empty

The control’s client identifier.

|

Remarks

Use the ClientInstanceName property to specify a unique client-side identifier for the ASPxDiagram control. Use this identifier on the client side to access the ASPxClientDiagram object in code.

Example

aspx
<script>
    var diagramData;
    function SaveDiagramData(s, e) {
        diagramData = diagram.Export();
    };
    function LoadDiagramData(s, e) {
        diagram.Import(diagramData);
    };
</script>

<dx:ASPxDiagram ID="ASPxDiagram1" runat="server" ClientInstanceName="diagram" />

<dx:ASPxButton ID="btnSave" runat="server" Text="Save" AutoPostBack="False" ClientSideEvents-Click="SaveDiagramData" />
<dx:ASPxButton ID="btnLoad" runat="server" Text="Load" AutoPostBack="False" ClientSideEvents-Click="LoadDiagramData" />

If the ClientInstanceName property is not specified for a control, the control’s client identifier is generated automatically and equals the value of the control’s ID property. In this case, client-side access to the control is not allowed when the control is in a naming container, for instance, within an ASPxPageControl‘s page or an ASPxPopupControl‘s window.

See Also

ASPxDiagram Class

ASPxDiagram Members

DevExpress.Web.ASPxDiagram Namespace