I use this in many places.  I created DoubleClickTable and use it like
FlexTable, only now I also call addDoubleClickHandler() on my table:

import com.google.gwt.event.dom.client.DoubleClickEvent;
import com.google.gwt.event.dom.client.DoubleClickHandler;
import com.google.gwt.event.dom.client.HasDoubleClickHandlers;
import com.google.gwt.event.shared.HandlerRegistration;
import com.google.gwt.user.client.ui.FlexTable;

public class DoubleClickTable extends FlexTable implements
                HasDoubleClickHandlers {

        public DoubleClickTable() {
                super();
        }

        public HandlerRegistration addDoubleClickHandler(DoubleClickHandler
handler) {
                return addDomHandler(handler, DoubleClickEvent.getType());
        }

}

On May 2, 5:13 am, Nguyen <[email protected]> wrote:
> I have a flextable and want to handle mouse double click for rows.
> Could you please show me how to get it done. TableListener is marked
> as deprecated as version 2.0.3.
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to 
> [email protected].
> For more options, visit this group 
> athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to