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