Hi jilterado,
I have prepared a little code example which showcases you how to achieve this:
//In your app.component.ts file
@ViewChild('myDropDownList', { static: false }) myDropDownList: jqxDropDownListComponent;
ngAfterViewInit(): void {
this.myDropDownList.createComponent(this.settings);
this.myDropDownList.elementRef.nativeElement.id = 'wraperId';
this.myDropDownList.elementRef.nativeElement.firstChild.id = 'dropdownId';
}
// and in you app.component.html file:
<jqxDropDownList #myDropDownList [auto-create]="false"></jqxDropDownList>
Let me know if that works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.com