Is there a way to increase the perspective dropdown list options width and not the component itself ? or is there any ignition versions where this is allowed ?
I'm having no luck with this for the width adjustment; the dropdown stays the same size. If I make the pixels smaller, the text is cut off, but if I make it wider, I get a horizontal scrollbar. Am I missing something?


I played with this a few days ago, the built-in style property was pretty much useless for this.
I think you need to target .ia_dropdown__optionsModal. And maybe add an ! important flag.
I just wanted to increase the dropdown list menu width and not the dropdown component
The dropdownOptionStyle applies to the text, not the container. That's why you're seeing this.
To apply it to all dropdowns in your project, add this to your stylesheet.css
.ia_dropdown__optionsModal {
width: auto !important;
}
to apply it to specific dropdowns within your project add this to your stylesheet.css
.ia_dropdown__optionsModal:has(.psc-Dropdown-AutoSizeOptionsModal) {
width: auto !important;
}
then add Dropdown-AutoSizeOptionsModal to dropdownOptionsStyle.classes of the dropdown you wish to expand
Credit to this post for helping me figure out how to apply it to a specific dropdown and not all dropdowns
If I could mark this post as the solution I would. Thank you very much for your quick response!


