Skip to main content

ASPxClientPopupControl.GetPopupControlCollection Method

Returns a collection of client popup control objects.

Declaration

static GetPopupControlCollection(): ASPxClientPopupControlCollection

Returns

Type Description
ASPxClientPopupControlCollection

An ASPxClientPopupControlCollection object that is the client-side collection of popup controls.

Remarks

Use the GetPopupControlCollection method on the client-side to gain access to the collection of client popup control objects, specified by the ASPxClientPopupControl instances.

A particular popup control object can be accessed either by its name within the collection or using the ASPxClientControlCollection.Get method.

Note

An ASPX page always has a single collection of ASPxClientPopupControl objects. If a page has an IFRAME element, which loads another page containing ASPxPopupControl instances, this content page will have its own collection of ASPxClientPopupControl objects. There is no unified collection of ASPxClientPopupControl objects in this case. If you need one, you should create and maintain it yourself.

See Also