jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
31 lines (22 loc) • 886 B
text/typescript
import { Component, ViewChild } from '@angular/core';
import { jqxPanelComponent } from 'jqwidgets-ng/jqxpanel';
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
@ViewChild('myPanel', { static: false }) myPanel: jqxPanelComponent;
public complexInputOnChange(event: any): void {
const args = event.args;
if (args) {
let oldValue = args.oldValue;
if (oldValue === 'JQXLite{options.value}') {
oldValue = '15 + 7i';
}
this.myPanel.append('<strong>' + event.type + '</strong><br />' +
'value: ' + args.value + ', old value: ' + oldValue +
',<br /> real part: ' + args.realPart + ', imaginary part: ' +
args.imaginaryPart + '<br />');
}
}
}