UNPKG

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
import { Component, ViewChild } from '@angular/core'; import { jqxComplexInputComponent } from 'jqwidgets-ng/jqxcomplexinput'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myComplexInput', { static: false }) myComplexInput: jqxComplexInputComponent; btnOnClick(): void { this.myComplexInput.value('11- 2ii'); } }