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
text/typescript
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';
export class AppComponent {
jqxNotification: jqxNotificationComponent;
eventsPanel: jqxPanelComponent;
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();
};
}