I would like to have an icon next to each item in my input drop down to indicate what the “status” of this item is. The issue is when I pass the object to the Input I cannot access the “status” attribute to create the "free layout " version of the “option”.
Thank you so much for the video! In the beginning I thought I was going crazy because I was not seeing the “data” with extra field, but than I tried it outside of a component. I should have mentioned that the input was in a component. So here is the solution if anyone is wondering in the future:
if you use the input in a component you need to ensure that the schema for the items on component level is defined to accept more than 2 values for mapping.
I’m trying to build a “people picker” using the Select input where each option shows:
a circular avatar image
the person’s name (label)
optionally a small status pill (e.g., “Active”, “Pending”)
I saw your video reply in this thread (“Select for Prolet”), where you switch the Select’s Layout type to Free layout to design a custom option with extra UI elements (screenshot attached as img1).
However, in my editor I don’t see the Layout type property on the Select component (screenshot img2). My panel only shows the usual “Options / Label per item / Value per item / Disabled per item / Initial value”, but no layout control.
Questions
Is Layout type (Free layout) behind a feature flag, in beta, or only available on a specific Select variant (e.g., Multi-select vs Select, or a newer component)?
If it’s been renamed or moved, where can I find it in the latest UI?
If it’s not available yet on my workspace, what’s the recommended workaround to render an avatar + label + status inside each option? (e.g., custom component, different input, or a templating trick?)
When using free/custom layout for options, how do we access the full option object (e.g., { id, label, avatar_url, status }) inside the option template? A small example formula would be super helpful.
Any performance tips for 200–500 options (virtualization / lazy loading) to keep the dropdown smooth?