UNPKG

jqwidgets-framework

Version:

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

43 lines (36 loc) 1.4 kB
import { Component, ViewChild, ElementRef } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('selectionlog', { static: false }) selectionlog: ElementRef; source: any = { datatype: 'xml', datafields: [ { name: 'CompanyName', map: 'm\\:properties>d\\:CompanyName' }, { name: 'ContactName', map: 'm\\:properties>d\\:ContactName' }, ], root: 'entry', record: 'content', id: 'm\\:properties>d\\:CustomerID', url: './../../../sampledata/customers.xml' };; dataAdapter: any = new jqx.dataAdapter(this.source); myComboBoxOnSelect(event: any): void { if (event.args) { let item = event.args.item; if (item) { let valueElement = document.createElement('div'); valueElement.innerHTML = 'Value: ' + item.value; let labelElement = document.createElement('div'); labelElement.innerHTML = 'Label: ' + item.label; let selectionLog = this.selectionlog.nativeElement; selectionLog.innerHTML = ''; selectionLog.appendChild(labelElement); selectionLog.appendChild(valueElement); } } }; }