UNPKG

jqwidgets-scripts-custom

Version:

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

17 lines (12 loc) 424 B
import { Component, ViewChild } from '@angular/core'; import { jqxComplexInputComponent } from 'jqwidgets-scripts/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'); } }