UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

36 lines (28 loc) 1.04 kB
import { Component, ViewChild, ElementRef } from '@angular/core'; import { jqxNotificationComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxnotification'; import { jqxPanelComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxpanel'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('jqxNotification') jqxNotification: jqxNotificationComponent; @ViewChild('eventsPanel') eventsPanel: jqxPanelComponent; @ViewChild('messagePanel') messagePanel: ElementRef; writeEventType(event: any): void { this.eventsPanel.append(event.type + "<br />"); }; open(event: any): void { this.writeEventType(event); }; close(event: any): void { this.writeEventType(event); }; click(event: any): void { this.writeEventType(event); this.messagePanel.nativeElement.style.display = 'inline-block'; }; clickCheckMail(): void { this.jqxNotification.open(); }; }