We have requirement to display translated dropdown values to respective users, Any way in which it can be done at runtime.
Dropdown list in English, is already stored in data type.
We have requirement to display translated dropdown values to respective users, Any way in which it can be done at runtime.
Dropdown list in English, is already stored in data type.
@RoshanPrasadR
Hi we can try the below approach.
Have a response data transform configured for the data page which is used to fetch the results from the data type
In response data transform, iterate over each result, and set a new property (Let’s say LocalizedText) as “@(Pega-RULES:String).getLocalizedValue()”
Ex:
@(Pega-RULES:String).getLocalizedValue(.DataTypePrimaryKey)
NOTE: there should be translations available for all the entries in Data Type.