Skip to main content

ASPxClientPopupMenu.RefreshPopupElementConnection Method

Refreshes the connection between the ASPxPopupMenu and the popup element.

Declaration

RefreshPopupElementConnection(): void

Remarks

The RefreshPopupElementConnection method is useful to restore the connection between the ASPxPopupMenu and the popup element on the page, if, for example, the popup element is updated within the update panel.

Example

The following example demonstrates how to use the ASPxClientPopupControl.RefreshPopupElementConnection method.

protected void ASPxPopupControl1_PopupElementResolve(object sender,
DevExpress.Web.ControlResolveEventArgs e) {
    e.ResolvedControl = ASPxHyperLink1;
}
See Also