Is there a way to have a SimpleSelect with different options values per row

Is there a way to have a SimpleSelect with different options values per row? Looking at the Vaadin 7 demo [here]
(https://github.com/vaadin/grid-renderers-collection-addon/blob/master/grid-renderers-collection-addon-demo/src/main/java/org/vaadin/grid/cellrenderers/demo/DemoUI.java) and the Vaadin 7 API [here]
(https://vaadin.com/api/com.vaadin/grid-renderers-collection-addon/1.2.4/org/vaadin/grid/cellrenderers/editable/SimpleSelectRenderer.html), or even the Vaadin 8 demo, I don’t see it being possible, but just wanted to confirm I was not missing a simple trick.

I ended up using [componentrenderer]
(https://vaadin.com/directory/component/componentrenderer), in case people are curious. It looks like something that I won’t need to totally scrap when I move to Vaadin 14, and has the features I need. While I have not tried to add a dropdown yet, I am rather certain it would work if I did try.

Is there a way to have a SimpleSelect with different options values per row?

Yes, there is no option for that in the SimpleSelectRenderer.

I ended up using componentrenderer, in case people are curious.

ComponentRenderer in Vaadin 8 and 14 is a good option when a more optimized specific renderer does not exist. ComponentRenderer, as it is designed to be more generic, adds some overhead, so typically it is advised that not add too many of those, as that tends lead poorer performance with Grid.