Skip to main content
A newer version of this page is available. .

ASPxClientDockPanel.panelUID Property

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

Declaration

panelUID: string

Property Value

Type Description
string

A string that is the unique identifier of a panel.

Remarks

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

This property can be used to obtain a panel at runtime via the ASPxClientDockManager.GetPanelByUID and ASPxClientDockZone.GetPanelByUID methods on the client side.

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