I'm trying to select the id of a textArea when it's focused in
<s:TextArea id="textarea1" focusIn="selectId(event)" />
selectId(event){
event.target.id;
}
Problem is TextArea is made up of RichEditableText so target doesn't actually refer to TextArea. I've tried event.target.parent.id but still not getting there. Anyone knows how to get to the bottom of this?
event.targetbut had to add 4parentin the middle. Not sure why, I guess that's how many it takes to get fromRichEditableTexttoTextArea– duder Jun 17 '10 at 3:00event.targetwould be the innermost item that was clicked on - on a button, it can be the text field that displays the label or a skinning component and so on. Don't rely on it here as it needn't always be 4 steps; might vary based on where you clicked. – Amarghosh Jun 17 '10 at 4:11