Уря! Пашет! Добавил в ItemEditor stopImmediatePropagation():

Код:
package ed
{
import mx.controls.TextArea;
import flash.events.Event;
import flash.system.fscommand;
import flash.events.KeyboardEvent;
public class EDescription extends TextArea
{
public function EDescription()
{
super();
this.addEventListener("change", this.changeEvent);
}
private function changeEvent(eventObject:Event):void
{
this.height = (this.textHeight <= 48) ? 48 : this.textHeight+6;
this.verticalScrollPosition=0;
}
override protected function keyDownHandler(event:KeyboardEvent):void
{
super.keyDownHandler(event)
if(event.charCode==13)
{
event.stopImmediatePropagation();
}
}
}
}