Flex DataGridColumn display multiline string data

raptors picture raptors · Aug 18, 2009 · Viewed 9.5k times · Source

Is it possible to display a multiline string in a Flex DataGridColumn?

i.e. Display:

Text line one.

Text line two.

I've tried putting "\n","\r","
" when storing the string but nothing seems to work.

Currently only "Text line one." is displayed and the rest is hidden in the cell. I would prefer not to use "wordWrap=true" to emulate this behaviour in the cell, but instead be able to manually put in newline breaks (although I could turn on wordWrap to avoid long text from hiding due to cell dimensions). Thanks for any replies.

Answer

raptors picture raptors · Aug 18, 2009

Never mind. Setting "wordWrap=true" and "variableRowHeight=true" seems to work.