jqwidgets-framework
Version:
jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
21 lines (17 loc) • 752 B
text/typescript
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
import { jqxMaskedInputComponent } from '../../../jqwidgets-ts/angular_jqxmaskedinput';
import { jqxPanelComponent } from '../../../jqwidgets-ts/angular_jqxpanel';
export class AppComponent {
numericInput: jqxMaskedInputComponent;
Events: jqxPanelComponent;
change(event: any): void {
let value = this.numericInput.val();
this.Events.prepend('<div style="margin-top: 5px;">Value: ' + value + '</div>');
};
}