Vue Popup Props
See Also
accessKey
The value of this property will be passed to the accesskey
attribute of the HTML element that underlies the UI component.
animation
The following code shows default values of the object depending on the device type:
{ show: { type: 'pop', duration: 300, from: { scale: 0.55 } }, hide: { type: 'pop', duration: 300, to: { opacity: 0, scale: 0.55 }, from: { opacity: 1, scale: 1 } } }
{ show: { type: 'slide', duration: 400, from: { position: { my: 'top', at: 'bottom' } }, to: { position: { my: 'center', at: 'center' } } }, hide: { type: 'slide', duration: 400, from: { opacity: 1, position: { my: 'center', at: 'center' } }, to: { opacity: 1, position: { my: 'top', at: 'bottom' } } } }
{ show: { type: 'fade', duration: 400, from: 0, to: 1 }, hide: { type: 'fade', duration: 400, from: 1, to: 0 } }
{ show: { type: 'slide', duration: 300, from: { top: '30%', opacity: 0 }, to: { top: 0, opacity: 1 } }, hide: { type: 'slide', duration: 300, from: { top: 0, opacity: 1 }, to: { top: '30%', opacity: 0 } } }
Use the position property to specify the position in which the UI component is shown and from which it is hidden.
Set the animation object to null
or undefined
to disable animations.
closeOnOutsideClick
Use the hideOnOutsideClick property instead.
Event (jQuery or EventObject)
The event that caused UI component closing. It is a EventObject or a jQuery.Event when you use jQuery.
container
This property accepts one of the following values:
A CSS selector, or a jQuery selector if you use jQuery
jQuery
index.js$(function(){ $("#popupContainer").dxPopup({ // ... container: '#containerElement' }); });
Angular
app.component.html<dx-popup ... container="#containerElement" > </dx-popup>
Vue
App.vue<template> <DxPopup ... container="#containerElement" > </DxPopup> </template> <script> import { DxPopup } from 'devextreme-vue/popup'; export default { components: { DxPopup } }; </script>
React
App.jsimport Popup from 'devextreme-react/popup'; // ... function App() { return ( <Popup ... container="#containerElement" > </Popup> ); }
A jQuery wrapper
jQuery
index.js$(function(){ $("#popupContainer").dxPopup({ // ... container: $('#containerElement') }); });
A DOM element
jQuery
index.js$(function(){ $("#popupContainer").dxPopup({ // ... container: document.getElementById('#containerElement') }); });
Angular
app.component.htmlapp.component.ts<dx-popup ... [container]="containerElement" > </dx-popup>
// ... export class AppComponent { containerElement: Element; constructor() { this.containerElement = document.getElementById('#containerElement') as Element; } }
Vue
App.vue<template> <DxPopup ... :container="containerElement" > </DxPopup> </template> <script> import { DxPopup } from 'devextreme-vue/popup'; export default { components: { DxPopup }, data() { return { containerElement: null } }, mounted() { this.containerElement = document.getElementById('containerElement'); } }; </script>
React
App.jsimport React, { useEffect, useState } from 'react'; import Popup from 'devextreme-react/popup'; // ... function App() { const [containerElement, setContainerElement] = useState(null); useEffect(() => { setContainerElement(document.getElementById('containerElement')); }, []); return ( <Popup ... container={containerElement} > </Popup> ); }
The UI component defines the default container on its initialization. This default container can be one of the following (if the element is absent, the component selects the next one):
.dx-viewport
body
If you set this property to a specific element, the shading applies to this element. The Popup calculates its size relative to the element.
copyRootClassesToWrapper
This property allows you to use CSS for wrapper element configuration. You can customize the shade, resize, and drag zones.
The following markup illustrates relations between wrapper and root elements when you set copyRootClassesToWrapper to true:
<body> <!-- The following element is the root element on which the component is initialized. --> <!-- Specify classes to be copied to the wrapper element here. --> <div id="popup" class="custom-class" ... ></div> <!-- The following element is the wrapper element. --> <!-- Custom classes are automatically copied from the root element. --> <div class="dx-overlay-wrapper dx-popup-wrapper custom-class" ... > <!-- The following element contains toolbars and component content. --> <div class="dx-popup-content" ... > <!-- ... --> </div> </div> </body>
deferRendering
Specifies whether to render the UI component's content when it is displayed. If false, the content is rendered immediately.
dragAndResizeArea
Specifies an element with boundaries within which users can drag and resize the Popup. Ignored if the dragOutsideBoundary property is set to true.
If you leave this property unspecified, users can drag and resize the Popup within boundaries of the element defined by the container property.
dragEnabled
A user can drag the popup window by the title. Therefore, this property makes sense if the showTitle property is set to true.
You can set the restorePosition property to false if you want to display the Popup at the same position to which users dragged it.
<html style="height: 100%;"> <head> . . . </head> <body style="min-height: 100%;"> . . . </body> </html>
dragOutsideBoundary
When you set this property to true, drag area boundaries defined by dragAndResizeArea and container properties are ignored.
fullScreen
height
This property accepts a value of one of the following types:
Number
The height in pixels.String
A CSS-accepted measurement of height. For example,"55px"
,"20vh"
,"80%"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
The Popup calculates its height relative to one of the elements in the following priority: container => position.of => window.
hideOnOutsideClick
Event (jQuery or EventObject)
The event that caused UI component hiding. It is a EventObject or a jQuery.Event when you use jQuery.
The function passed to this property enables you to specify a custom condition for UI component hiding. For instance, you can prevent hiding until a user clicks a certain element.
jQuery
$(function () { $("#popupContainer").dxPopup({ // ... hideOnOutsideClick: function(e) { return e.target === $("#someElement").get()[0]; } }); });
Angular
import { DxPopupModule } from "devextreme-angular"; // ... export class AppComponent { // ... hideOnOutsideClick(e) { return e.target === document.getElementById("someElement"); } } @NgModule({ imports: [ // ... DxPopupModule ], // ... })
<dx-popup ... [hideOnOutsideClick]="hideOnOutsideClick"> </dx-popup>
Vue
<template> <DxPopup .... :hide-on-outside-click="hideOnOutsideClick"> </DxPopup> </template> <script> import 'devextreme/dist/css/dx.light.css'; import DxPopup from 'devextreme-vue/popup'; export default { components: { DxPopup }, methods: { hideOnOutsideClick (e) { return e.target === document.getElementById("someElement"); } } } </script>
React
import React from 'react'; import 'devextreme/dist/css/dx.light.css'; import Popup from 'devextreme-react/popup'; const hideOnOutsideClick = (e) => { return e.target === document.getElementById("someElement"); }; export default function App() { return ( <Popup ... hideOnOutsideClick={hideOnOutsideClick}> </Popup> ); }
The hideOnOutsideClick function is called when a user clicks the UI component or outside it.
maxHeight
This property accepts a value of one of the following types:
Number
The height in pixels.String
A CSS-accepted measurement of height. For example,"55px"
,"20vh"
,"80%"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
maxWidth
This property accepts a value of one of the following types:
Number
The width in pixels.String
A CSS-accepted measurement of width. For example,"55px"
,"20vw"
,"80%"
,"auto"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
minHeight
This property accepts a value of one of the following types:
Number
The height in pixels.String
A CSS-accepted measurement of height. For example,"55px"
,"20vh"
,"80%"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
minWidth
This property accepts a value of one of the following types:
Number
The width in pixels.String
A CSS-accepted measurement of width. For example,"55px"
,"20vw"
,"80%"
,"auto"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
onContentReady
A function that is executed when the UI component is rendered and each time the component is repainted.
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
onDisposing
A function that is executed before the UI component is disposed of.
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
onHidden
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
onHiding
Name | Type | Description |
---|---|---|
cancel | | |
Set this field to true if you want the Popup to remain visible. |
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
onInitialized
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
See Also
jQuery
Angular
Vue
React
onOptionChanged
Name | Type | Description |
---|---|---|
model | any |
Model data. Available only if you use Knockout. |
fullName |
The path to the modified property that includes all parent properties. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
component |
The UI component's instance. |
|
name |
The modified property if it belongs to the first level. Otherwise, the first-level property it is nested into. |
|
value | any |
The modified property's new value. |
previousValue | any |
The UI component's previous value. |
The following example shows how to subscribe to component property changes:
jQuery
$(function() { $("#popupContainer").dxPopup({ // ... onOptionChanged: function(e) { if(e.name === "changedProperty") { // handle the property change here } } }); });
Angular
<dx-popup ... (onOptionChanged)="handlePropertyChange($event)"> </dx-popup>
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { // ... handlePropertyChange(e) { if(e.name === "changedProperty") { // handle the property change here } } }
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { DxPopupModule } from 'devextreme-angular'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, DxPopupModule ], providers: [ ], bootstrap: [AppComponent] }) export class AppModule { }
Vue
<template> <DxPopup ... @option-changed="handlePropertyChange" /> </template> <script> import 'devextreme/dist/css/dx.light.css'; import DxPopup from 'devextreme-vue/popup'; export default { components: { DxPopup }, // ... methods: { handlePropertyChange: function(e) { if(e.name === "changedProperty") { // handle the property change here } } } } </script>
React
import React from 'react'; import 'devextreme/dist/css/dx.light.css'; import Popup from 'devextreme-react/popup'; const handlePropertyChange = (e) => { if(e.name === "changedProperty") { // handle the property change here } } export default function App() { return ( <Popup ... onOptionChanged={handlePropertyChange} /> ); }
onResize
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
event | Event (jQuery or EventObject) |
The event that caused the function to execute. It is an EventObject or a jQuery.Event when you use jQuery. |
height |
The UI component's height after resize. |
|
width |
The UI component's width after resize. |
onResizeEnd
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
event | Event (jQuery or EventObject) |
The event that caused the function to execute. It is an EventObject or a jQuery.Event when you use jQuery. |
height |
The UI component's height after resize. |
|
width |
The UI component's width after resize. |
onResizeStart
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
event | Event (jQuery or EventObject) |
The event that caused the function to execute. It is an EventObject or a jQuery.Event when you use jQuery. |
height |
The UI component's height before resize. |
|
width |
The UI component's width before resize. |
onShowing
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
cancel | | |
Set this field to true if you want to prevent the Popup from being displayed. |
onShown
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
onTitleRendered
A function that is executed when the UI component's title is rendered.
Name | Type | Description |
---|---|---|
component |
The UI component's instance. |
|
element |
The UI component's container. It is an HTML Element or a jQuery Element when you use jQuery. |
|
model | any |
Model data. Available only if Knockout is used. |
titleElement |
The title's container. It is an HTML Element or a jQuery Element when you use jQuery. |
position
This property accepts one of the following:
Position configuration object
An object that specifies the UI component's position.String
A shortcut listed in the accepted values. Positions the UI component relative to the window.Function (deprecated since v21.2)
Refer to the W0018 warning description for information on how to migrate to other property values.
If you do not specify the container property and set the position.of to a specific element, the shading applies to this element. The Popup calculates its size relative to the element.
See Also
restorePosition
Specifies whether to display the Popup at the initial position when users reopen it.
rtlEnabled
When this property is set to true, the UI component text flows from right to left, and the layout of elements is reversed. To switch the entire application/site to the right-to-left representation, assign true to the rtlEnabled field of the object passed to the DevExpress.config(config) method.
DevExpress.config({ rtlEnabled: true });
shadingColor
Specifies the shading color. Applies only if shading is enabled.
This property supports the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
- Paint server address
tabIndex
The value of this property will be passed to the tabindex
attribute of the HTML element that underlies the UI component.
titleTemplate
Specifies a custom template for the UI component title. Does not apply if the title is defined.
toolbarItems[]
In the following code, two items are defined on the toolbar: one is plain text, another is the Button UI component:
jQuery
$(function() { $("#popupContainer").dxPopup({ // ... toolbarItems: [{ text: "Title", location: "before" }, { widget: "dxButton", location: "after", options: { text: "Refresh", onClick: function(e) { /* ... */ } } }] }); });
<div id="popupContainer"> <p>Popup content</p> </div>
Angular
<dx-popup ... > <div *dxTemplate="let data of 'content'"> <p>Popup content</p> </div> <dxi-popup-toolbar-item text="Title" location="before"> </dxi-popup-toolbar-item> <dxi-popup-toolbar-item widget="dxButton" location="after" [options]="{ text: 'Refresh', onClick: refresh }"> </dxi-popup-toolbar-item> </dx-popup>
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { refresh () { /* ... */ } }
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { DxPopupModule } from 'devextreme-angular'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, DxPopupModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
ASP.NET MVC Controls
@(Html.DevExtreme().Popup() <!-- ... --> .ContentTemplate(@<text> <p>Popup content</p> </text>) .ToolbarItems(ti => { ti.Add() .Text("Title") .Location(ToolbarItemLocation.Before); ti.Add() .Widget(w => w.Button() .Text("Refresh") .OnClick("refresh")) .Location(ToolbarItemLocation.After); } ) <script type="text/javascript"> function refresh() { /* ... */ } </script>
Vue
<template> <DxPopup ... > <p>Popup content</p> <DxToolbarItem text="Title" location="before"> </DxToolbarItem> <DxToolbarItem widget="dxButton" :options="buttonOptions" location="after"> </DxToolbarItem> </DxPopup> </template> <script> import 'devextreme/dist/css/dx.light.css'; import DxPopup, { DxToolbarItem } from 'devextreme-vue/popup'; export default { components: { DxPopup }, data() { return { buttonOptions: { text: 'Refresh', onClick: function(e) { /* ... */ } } } } } </script>
React
import React from 'react'; import 'devextreme/dist/css/dx.light.css'; import { Popup, ToolbarItem } from 'devextreme-react/popup'; class App extends React.Component { constructor() { this.buttonOptions = { text: 'Refresh', onClick: function(e) { /* ... */ } }; } render() { return ( <Popup ... > <p>Popup Content</p> <ToolbarItem text="Title" location="before"> </ToolbarItem> <ToolbarItem widget="dxButton" location="after" options={this.buttonOptions}> </ToolbarItem> </Popup> ); } } export default App;
width
This property accepts a value of one of the following types:
Number
The width in pixels.String
A CSS-accepted measurement of width. For example,"55px"
,"20vw"
,"80%"
,"auto"
,"inherit"
.Function (deprecated since v21.2)
Refer to the W0017 warning description for information on how you can migrate to viewport units.
The Popup calculates its width relative to one of the elements in the following priority: container => position.of => window.
wrapperAttr
Specifies the global attributes for the UI component's wrapper element.
jQuery
$(function(){ $("#popupContainer").dxPopup({ // ... wrapperAttr: { id: "elementId", class: "class-name" } }); });
Angular
<dx-popup ... [wrapperAttr]="{ id: 'elementId', class: 'class-name' }"> </dx-popup>
import { Component } from '@angular/core'; // ... @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { // ... }
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { DxPopupModule } from 'devextreme-angular'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, DxPopupModule ], providers: [ ], bootstrap: [AppComponent] }) export class AppModule { }
Vue
<template> <DxPopup ... :wrapper-attr="popupAttributes"> </DxPopup> </template> <script> import DxPopup from 'devextreme-vue/popup'; export default { components: { DxPopup }, data() { return { popupAttributes: { id: 'elementId', class: 'class-name' } } } } </script>
React
import React, { useMemo } from 'react'; import Popup from 'devextreme-react/popup'; function App() { const popupAttributes = useMemo(() => { return { id: 'elementId', class: 'class-name' } }, []); return ( <Popup ... wrapperAttr={popupAttributes}> </Popup> ); } export default App;
The code above specifies the id
and class
attributes for the wrapper element and produces markup similar to this:
<body> <!-- The following is the wrapper element. --> <!-- It is nested inside an element defined by the `container` property (`<body>` by default). --> <div id="elementId" class="dx-overlay-wrapper dx-popup-wrapper class-name" ... > <!-- The following element contains toolbars and component content. --> <div class="dx-overlay-content"> <!-- The following element displays content specified in the `contentTemplate`. --> <div class="dx-popup-content" ... > <!-- ... --> </div> </div> </div> </body>
jQuery
You can specify attributes to the component's root element directly in HTML code:
<div id="myPopup" class="myClass"></div>
Angular
You can specify attributes to the component's root element directly in HTML code:
<dx-popup ... class="myClass"> </dx-popup>
React
You can specify attributes to the component's root element directly in HTML code:
<Popup ... className="myClass" />
ASP.NET Core Controls
To add an attribute to an ASP.NET Core control, use its OnInitialized method:
@(Html.DevExtreme().Popup()... .OnInitialized("(e) => e.element.addClass('myClass')") )
ASP.NET MVC Controls
To add an attribute to an ASP.NET MVC control, use its OnInitialized method:
@(Html.DevExtreme().Popup()... .OnInitialized("(e) => e.element.addClass('myClass')") )
If you have technical questions, please create a support ticket in the DevExpress Support Center.