Search code examples
apache-flexdatagridlocalizationlocale

Clipped contents of Flex DataGrid are indicated by null" instead of trailing dots


enter image description here

My Flex app uses a DataGrid. Clipped cell contents are indicated by trailing dots. This works fine in English language. When we launch the browser in a different language (say Portugese), the cell contents are indicated by "null" instead. Any clues?


Solution

  • Apparently my SWF was compiled with English version of framework resource property files. As per design, Flex cant load framework property files in runtime.

    Workaround this by specifying English as fall back language.

    resourceManager.localeChain=[myLocale,"en_US"];