You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As an EAK user, I aplly @OptionSource with enums or constant classes used as the source of data for dropdown lists. An enum constant is usually spelled in the format like DARK_GRAY. To convert it into an option label, I would use textTransform = StringTransformation.CAPITALIZE. However this transformation does not process underscore separator although it does process dashes.
I would like to have DARK_GRAY converted to "Dark Gray" when StringTransformation.CAPITALIZE` is used.
Also, they need to make sure that the same word-separatio/conversion principles are used with all the available transformers.
The text was updated successfully, but these errors were encountered:
As an EAK user, I aplly
@OptionSource
with enums or constant classes used as the source of data for dropdown lists. An enum constant is usually spelled in the format likeDARK_GRAY
. To convert it into an option label, I would usetextTransform = StringTransformation.CAPITALIZE
. However this transformation does not process underscore separator although it does process dashes.I would like to have
DARK_GRAY
converted to"Dark Gray"
when StringTransformation.CAPITALIZE` is used.Also, they need to make sure that the same word-separatio/conversion principles are used with all the available transformers.
The text was updated successfully, but these errors were encountered: