Angular Popup - Customize the Content

Specifying the Content Template

The template implementation depends on the used framework or library. Examples of jQuery, Angular, and ASP.NET MVC are presented below. They show how to create a template consisting of static (text) and dynamic (the Button UI component) content.

HTML
TypeScript
  • <dx-popup
  • title="Popup Title"
  • [(visible)]="isPopupVisible"
  • contentTemplate="popupContent">
  • <div *dxTemplate="let data of 'popupContent'">
  • <p>Static content</p>
  • <dx-button
  • text="Click me"
  • (onClick)="buttonClick($event)">
  • </dx-button>
  • </div>
  • </dx-popup>
  • import { DxPopupModule, DxButtonModule } from "devextreme-angular";
  • // ...
  • export class AppComponent {
  • isPopupVisible: boolean = true;
  • buttonClick (e) {
  • // ...
  • }
  • }
  • @NgModule({
  • imports: [
  • // ...
  • DxPopupModule,
  • DxButtonModule
  • ],
  • // ...
  • })

Switching Templates On the Fly

If you need to render different templates depending on a specific condition, define them inside the Popup container using the DevExtreme dxTemplate markup component. You can switch the templates on the fly by changing the contentTemplate property's value.

HTML
TypeScript
  • <dx-button
  • text="Change the Template"
  • (onClick)="changeTemplate()">
  • </dx-button>
  • <dx-popup
  • title="Popup Title"
  • [(visible)]="isPopupVisible"
  • [contentTemplate]="currentTemplate">
  • <div *dxTemplate="let data of 'template1'">
  • <p>First template</p>
  • </div>
  • <div *dxTemplate="let data of 'template2'">
  • <p>Second template</p>
  • </div>
  • </dx-popup>
  • import { DxPopupModule, DxButtonModule } from "devextreme-angular";
  • // ...
  • export class AppComponent {
  • currentTemplate: string = "template1";
  • isPopupVisible: boolean = true;
  • changeTemplate () {
  • this.currentTemplate = (this.currentTemplate == "template1" ? "template2" : "template1");
  • this.isPopupVisible = true;
  • }
  • }
  • @NgModule({
  • imports: [
  • // ...
  • DxPopupModule,
  • DxButtonModule
  • ],
  • // ...
  • })
See Also