Thanks,
After I sent the e-mail, I was playing around on my local with this:
COMPILE::JS
protected override function createElement():WrappedHTMLElement
{
var element:WrappedHTMLElement = super.createElement();
super.input.addEventListener("onfocusout", onFocusOut);
return element;
}
private function onFocusOut(event:FocusEvent):void
{
dispatchEvent(new Event(FocusEvent.FOCUS_OUT));
}
But I'm missing something.
Greg Dove <[email protected]> escreveu no dia quarta, 21/10/2020 à(s)
00:27:
> I have a local approach for this that I was testing. I will try to push it
> by the end of my day.
>
>
> On Wed, Oct 21, 2020 at 12:21 PM Hugo Ferreira <[email protected]>
> wrote:
>
> > Hi,
> >
> > How to use focus events with Jewel TextInput (if possible at the moment)
> ?
> >
>