jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
26 lines (22 loc) • 953 B
text/typescript
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
import { jqxNotificationComponent } from 'jqwidgets-ng/jqxnotification';
import { jqxInputComponent } from 'jqwidgets-ng/jqxinput';
import { jqxTextAreaComponent } from 'jqwidgets-ng/jqxtextarea';
export class AppComponent {
jqxNotification: jqxNotificationComponent;
name: jqxInputComponent;
email: jqxInputComponent;
comment: jqxTextAreaComponent;
click(): void {
this.name.val('');
this.email.val('');
this.comment.val('');
this.jqxNotification.open();
};
}