jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
17 lines (12 loc) • 433 B
text/typescript
import { Component, ViewChild } from '@angular/core';
import { jqxComplexInputComponent } from 'jqwidgets-ng/jqxcomplexinput';
({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
('myComplexInput', { static: false }) myComplexInput: jqxComplexInputComponent;
btnOnClick(): void {
this.myComplexInput.value('11- 2ii');
}
}