UNPKG

taffy-coustom-ui

Version:
30 lines (22 loc) 810 B
import { Component, ViewChild, ElementRef, AfterViewInit } from '@angular/core'; import { jqxTreeComponent } from 'jqwidgets-ng/jqxtree'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent implements AfterViewInit { @ViewChild('jqxTree', { static: false }) jqxTree: jqxTreeComponent; @ViewChild('ContentPanel', { static: false }) ContentPanel: ElementRef; getWidth() : any { if (document.body.offsetWidth < 850) { return '90%'; } return 850; } ngAfterViewInit() { this.jqxTree.elementRef.nativeElement.firstChild.style.border = 'none'; } select(event: any): void { this.ContentPanel.nativeElement.innerHTML = '<div style="margin: 10px;">' + event.args.element.id + '</div>'; }; }