UNPKG

taffy-coustom-ui

Version:
23 lines (17 loc) 559 B
import { Component, ViewChild, AfterViewInit, ViewEncapsulation } from '@angular/core'; import { jqxWindowComponent } from 'jqwidgets-ng/jqxwindow'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], encapsulation: ViewEncapsulation.None }) export class AppComponent { @ViewChild('window', { static: false }) window: jqxWindowComponent; ngAfterViewInit(): void { this.window.focus(); } showWindowButtonClick(): void { this.window.open(); } }