aspnetbootstrap-devexpress-dot-web-dot-bootstrap-ad6a7202.md
A web control that enables you to add the popup window functionality to your web application.
Namespace : DevExpress.Web.Bootstrap
Assembly : DevExpress.Web.Bootstrap.v25.2.dll
NuGet Package : DevExpress.Web.Bootstrap
[DXClientDocumentationProviderWeb("BootstrapPopupControl")]
[ToolboxTabName("DX.25.2: Bootstrap Controls")]
public class BootstrapPopupControl :
ASPxPopupControl,
ISimpleRenderControl,
IBootstrapPopupCssClassesOwner
<ToolboxTabName("DX.25.2: Bootstrap Controls")>
<DXClientDocumentationProviderWeb("BootstrapPopupControl")>
Public Class BootstrapPopupControl
Inherits ASPxPopupControl
Implements ISimpleRenderControl,
IBootstrapPopupCssClassesOwner
Note
The BootstrapPopupControl control provides you with comprehensive client-side functionality implemented using JavaScript code:
The control’s client-side API is enabled if the ASPxPopupControlBase.EnableClientSideAPI property is set to true, or the ASPxPopupControlBase.ClientInstanceName property is defined, or any client event is handled.
This example demonstrates the basic functionality of the Popup Control.
BootstrapPopupControl class.BootstrapLayoutItem.ContentCollection array with required content controls.The image below shows the result:
<div id="default-popup-control-1" class="popup-target popup-target-sm"></div>
<dx:BootstrapPopupControl runat="server" ShowOnPageLoad="true" PopupElementCssSelector="#default-popup-control-1"
PopupHorizontalAlign="Center" PopupVerticalAlign="Middle" Width="500px" CloseAction="CloseButton">
<ContentCollection>
<dx:ContentControl>
...
</dx:ContentControl>
</ContentCollection>
</dx:BootstrapPopupControl>
Object Control WebControl ASPxWebControlBase ASPxWebControl ASPxDataWebControlBase ASPxDataWebControl ASPxPopupControlBase ASPxPopupControl BootstrapPopupControl
See Also