jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
36 lines (28 loc) • 1.08 kB
text/typescript
import { Component, ViewChild, ElementRef } from '@angular/core';
import { jqxNotificationComponent } from 'jqwidgets-ng/jqxnotification';
import { jqxPanelComponent } from 'jqwidgets-ng/jqxpanel';
({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
('jqxNotification', { static: false }) jqxNotification: jqxNotificationComponent;
('eventsPanel', { static: false }) eventsPanel: jqxPanelComponent;
('messagePanel', { static: false }) 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();
};
}