Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a TextArea in a mobile application that I want to force invalidation on a certain event. So far I can do this:

myTextArea.width = myTextArea.width + 1;

I know it works because the text area updates correctly.

I've tried to do it "correctly" using the following:

testing.invalidateProperties();
testing.invalidateDisplayList();
testing.invalidateSize();
testing.validateNow();
parentGroup.invalidateProperties();
parentGroup.invalidateDisplayList();
parentGroup.invalidateSize();
parentGroup.validateNow();

None of the previous code works.

The TextArea is using the StageTextAreaSkin.

UPDATE
This seems to work as well as setting the width but is also a hack and also doesn't sync with the rest of the components:

testing.skin.styleChanged("anything");
share|improve this question
What do you expect to happen as a result of the invalidation? If we knew that, perhaps that may be a hint as to why the invalidate methods do not work, but changing the width does. – Reboog711 Jan 20 at 1:21
I'd like it to be repositioned in it's container which is a vgroup in a scroller. It might help to see this related question stackoverflow.com/questions/14412301/… – 1.21 gigawatts Jan 20 at 1:42
1  
In Flex, a component is always sized and positioned by its parent. Perhaps you need to invalidate the DisplayList or the parent to you TextArea? Changing the width may force the parent to re-calculate. – Reboog711 Jan 20 at 2:36
I tried that. I updated the post to include code I used. – 1.21 gigawatts Jan 20 at 20:36

2 Answers

auto resize textarea as u enter the text, u can use heightinlines property of textarea.

The Spark version of the TextArea class has a “heightInLines” property which you can use to specify the height in lines (imagine that!?) of the component when not explicitly setting a “height” in pixels or a percentage. It turns out that you can set this property to NaN (or “Not A Number”), which then causes the component to resize itself automatically as the number of lines of text changes.

<s:TextArea 
    id="resizeableTextArea"
    heightInLines="{NaN}"
    minHeight="50"/>
share|improve this answer
Nice find! I'll try it out. – 1.21 gigawatts Jan 23 at 17:41
up vote 0 down vote accepted

The only way I've found to force a validation is to call myTextArea.setStyle("anything_here") or myTextArea.skin.setStyle("anything_here"). Note, it may be the fault of the skin, it is a mobile spark skin from the SDK (not my own creation). Better answers are appreciated.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.