Skip to main content

ASPxClientDockZone.zoneUID Property

Gets or sets the unique identifier of a zone on a page.

Declaration

zoneUID: string

Property Value

Type Description
string

A string that is the unique identifier of a zone.

Remarks

The zoneUID property specifies the unique identifier for the current zone. By default, the zoneUID property is set to the control’s ID property value.

This property can be used to obtain a zone at runtime via the client-side ASPxClientDockManager.GetZoneByUID method.

Example

<dx:ASPxDockManager ID="MyASPxDockManager" runat="server">
     <ClientSideEvents
          AfterDock="function(s, e) {e.panel.SetHeaderText(e.zone.zoneUID + ' - ' + e.panel.panelUID);}" 
          AfterFloat="function(s, e) {e.panel.SetHeaderText(e.panel.panelUID);}" />
</dx:ASPxDockManager>
See Also