I'm using Ionic 7 and React 18. I have this IonSelect component for selecting a state from an alphabetized list
<IonSelect
interface='popover'
aria-label='State'
value={contactInfo?.mailingAddress.region?.id}
placeholder='Select State'
onIonChange={(e) =>
setContactInfo((prevInfo) => {
const selectedRegionId = e.detail.value
return {
...prevInfo,
mailingAddress: {
...prevInfo.mailingAddress,
region: regions.find((region) => region.id === selectedRegionId) || null
}
}
})
}
>
{regions.map((stateOption) => (
<IonSelectOption key={stateOption.id} value={stateOption.id}>
{stateOption.name}
</IonSelectOption>
))}
</IonSelect>
I would like this to behave like the HTML select menus, whereby when you type a letter the list scrolls to the options starting with that letter. How do I adjust what I have to accommodate this?
Please follow this example. you can use this as a base code for your requirements.