UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

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