Monday, November 14, 2016

Re: How to handle double click on TreeItem

Nevermind, I found out why...

Am Montag, 2. Oktober 2006 18:00:27 UTC+2 schrieb edmik:
Hi VS,
use the provided toolkit double click event is much cleaner. e.g.
class MyTree extends Tree
    private final MyTree me ;
    /**
     *
     */
    public MyTree()
    {
        super();
        this.me = this ;
        sinkEvents(Event.ONDBLCLICK);
    }

    public void onBrowserEvent(Event event)
    {
        super.onBrowserEvent(event);
        if (DOM.eventGetType(event) == Event.ONDBLCLICK)
        {
            DeferredCommand.add( new Command()
               {
                    public void execute()
                    {
                        SomeClass.handleDoubleClick(me);
                    }
               });
        }
    }

Then use the selectedItem to get the double clicked tree item.
Regards,
Malcolm

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment