Hi All,
I'm having a bit of an issue when using the RichEditableText component in Flex
4.
Using the following code I'm populating the textFlow with 3 lines of data.
However, when I try scrolling the text only the first and last lines are
actually displayed, the middle line seems to vanish completely.
If I copy the text and paste it into notepad or the like all 3 lines are
actually in the RichEditableText textfield.
<s:RichEditableText id = "txtDescription"
heightInLines="1"
editable="false"
selectable="true"
textFlow=
"{TextFlowUtil.importFromString('<span>'+
((dataGridListData.label).toString()) + '<\/span>',
WhiteSpaceCollapse.PRESERVE)}"
paddingLeft = "2"/>
Any clues as to what's going on would be helpful.
Thanks in advance,
Kev