Re: GWT, Firefox, and focusout

2016-04-26 Thread Jonathon Lamon
You might need to look into the DOMImpl and DOMImplStandard classes and dispatchEvent... It might be easier to add the event listener via JSNI as well. On Tue, Apr 26, 2016 at 7:45 AM N Troncoso wrote: > This is a GWT issue in that I'm trying to get it to work in GWT. I've > tried implementing

Re: GWT, Firefox, and focusout

2016-04-26 Thread N Troncoso
This is a GWT issue in that I'm trying to get it to work in GWT. I've tried implementing the code in that link, but a GWT browser event is still not fired even when the javascript focusout event is fired. On Friday, April 22, 2016 at 11:11:59 AM UTC-4, JonL wrote: > > This is not a GWT issue rea

Re: GWT, Firefox, and focusout

2016-04-22 Thread JonL
This is not a GWT issue really, so let me GTFY: https://gist.github.com/nuxodin/9250e56a3ce6c0446efa On Thursday, April 21, 2016 at 1:16:00 PM UTC-7, N Troncoso wrote: > > I have an issue where an event isn't firing in Firefox, and it turns out > this is because Firefox doesn't currently support

GWT, Firefox, and focusout

2016-04-21 Thread N Troncoso
I have an issue where an event isn't firing in Firefox, and it turns out this is because Firefox doesn't currently support the focusin and focusout events. This is a problem in a custom cell where I'm overriding onBrowserEvent. On the blur event, the ValueUpdater parameter is null, but it's not