Has anyone done i18n (or localization) in ShieldUI Grid JavaScript component? I need to make column header showing different languages per language setting in browser. Did research on ShieldUI web site but found nothing. Thanks.
Asked
Active
Viewed 35 times
1 Answers
0
You can set the value of a column title in JavaScript, generated depending on the current language.

Vladimir Georgiev
- 1,949
- 23
- 26
-
1In the end I handle I18n from the parent program of this grid component to achieve it. – Nick Yang May 22 '20 at 04:17
-
Yes, webpage localization almost always involves external settings like locale present in the URL (e.g. /en/xxx, /de/xxx, etc), for SEO-related purposes. Hence, it is very easy to control the localized strings from the page-level javascript. – Vladimir Georgiev May 22 '20 at 06:24