UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

17 lines (12 loc) 431 B
import { Component, ViewChild } from '@angular/core'; import { jqxComplexInputComponent } from '../../../jqwidgets-ts/angular_jqxcomplexinput'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myComplexInput') myComplexInput: jqxComplexInputComponent; btnOnClick(): void { this.myComplexInput.value('11- 2ii'); } }