Hello , thank you for the example. I tried it for my project, but unfortunately it did not work. I got an error "Element may be null" in the .ts-file on line:
(selectElements.item(i).children[0] as any).style.width = '420px';.
I tried to change it to:
(selectElements.item(i)?.children[0] as any).style.width = '420px';
and also I tried to check if the element selectElements.item(i) is equal to null. Both solutions did not work.
Is there any other way to change the width of the igx-select? Thank you!