When i'm validating a itemedition on "change" event, i want show the
error tooltip (in red). But when the tooltip is show the editor is
close i found why. The tooltip dispatch a stage resize and the
datagrid catch this event:
private function editorStageResizeHandler(event:Event):void
{
if (!owns(DisplayObject(event.target)))
endEdit(DataGridEventReason.OTHER);
}
But event.target is the tooltip that is not inside the datagrid
(modal) so it close the itemeditor. The function is private :(.
Any solution.