Add select/dropdown in a Magento 2 UI component admin grid
Please check our previous article to add an image column to your admin grid.
If you've worked with admin grids in Magento 1 or Magento 2, you've likely used the select field type. This column type displays a label corresponding to the raw value stored in the database. It's commonly used for fields like Yes/No, Active/Inactive, or lists such as country selections.
However, the values stored in the database are usually raw and meaningful only to developers. For example, a Yes/No field might store 0 for "No" and 1 for "Yes". Without any customization, your grid will display these raw values (e.g., 0 or 1), which can be confusing or unintuitive for admin users....