import { Component, ViewChild, AfterViewInit } from '@angular/core'; import { jqxDropDownButtonComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxdropdownbutton'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent implements AfterViewInit { @ViewChild('myDropDownButton') myDropDownButton: jqxDropDownButtonComponent; ngAfterViewInit(): void { let dropDownContent = '
DropDownButton
'; this.myDropDownButton.setContent(dropDownContent); } }