How do I get the options property in the listbox?
@ViewChild(CdkListbox) listbox: CdkListbox;
features = ['Hydrodynamic', 'Port & Starboard Attachments', 'Turbo Drive'];
ngAfterViewInit() {
console.log({ options: this.listbox.options }); //<---
}
The property exists in listbox, but it is not exposed in typescript typing. Can I get the property anyway?
https://stackblitz.com/edit/mkhg9n?file=src%2Fexample%2Fcdk-listbox-activedescendant-example.ts