ckaotik
ckaotik
Definitely a plus one from me! This would be awesome (even though by now I have configured all my alts manually :P)
How is the current status? As far as I can tell, a second review was requested and that's what we're waiting for? :)
Couldn't we simply change [ChoiceConfigurator.php:65](https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/src/Field/Configurator/ChoiceConfigurator.php#L65) to use automatic numeric keys? Since the value is already used during rendering, it seems the keys are not needed (unless I'm missing something). ```diff...
I just realized the issue with my suggestion. Currently ChoiceConfigurator currently only handles translatables when rendering, via `$processedEnumChoices[$choice->name] = $choice;` ([Source](https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/src/Field/Configurator/ChoiceConfigurator.php#L65C17-L65C64)) + later building `$selectedLabel` based on `$selectedValue->name` ([Source](https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/src/Field/Configurator/ChoiceConfigurator.php#L129-L134)). This...
It is working in my project, both the form and the display rendering. The early return just stops processing when on a form page, further processing is applied for the...