UNPKG

taffy-coustom-ui

Version:
16 lines (12 loc) 370 B
import { Component, ViewChild } from '@angular/core'; import { jqxWindowComponent } from 'jqwidgets-ng/jqxwindow'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myWindow', { static: false }) myWindow: jqxWindowComponent; btnOnClick(): void { this.myWindow.open(); } }