UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

38 lines (30 loc) 1 kB
import { Component, ViewChild } from '@angular/core'; import { jqxComboBoxComponent } from 'jqwidgets-ng/jqxcombobox'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myComboBox', { static: false }) myComboBox: jqxComboBoxComponent; source: any = { datatype: 'json', datafields: [ { name: 'CompanyName' }, { name: 'ContactName' } ], id: 'id', url: './../../../sampledata/customers.txt', async: false }; dataAdapter: any = new jqx.dataAdapter(this.source); bottomBtnOnChecked(): void { this.myComboBox.dropDownVerticalAlignment('bottom'); } count = 0; //Stops the Overwrite of the animation type on initialization topBtnOnChecked(): void { if (this.count === 1) this.myComboBox.dropDownVerticalAlignment('top'); this.count = 1; } }