Hi,
Trying to use Choice Chips in my app. It is multilingual, which means that the labels displayed are not the same in each language.
Therefore, I'm looking for a way to have a standard "behind the scene" value for my Choice Chips, which could be different from the actual shown label on the chips.
How have you guys managed to deal with this case ?
The only way I found is to use the "On Selected" action to set a page state value depending on values selected. I do have to check for all possibilities in every language, which makes it quite cumbersome, especially if the labels also have to adapt to singular and plural forms...
I find that relying on string parsing is bound to be very error-prone. This actually sounds like a really good scenario for binding the Choice Chips to Enum values instead, but I have not seen that it is possible at all.
Any clues would be of great help !