Re: FlexTable and clickHandler depreciated?

2011-07-13 Thread Johan Natt och Dag
I tested the code with GWT 2.3 and I do not get any warnings. Try a Project-Clean.. and/or Project-Build All in Eclipse. Regards, Johan On Jul 12, 11:32 pm, seven.reeds seven.re...@gmail.com wrote: Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing something wrong.  I have a FlexTable and I try

Re: FlexTable and clickHandler depreciated?

2011-07-13 Thread seven.reeds
Thank you, thank you! I found the issue with Project-Clean! I had not used that before. The real issue was that when I was typing the addClickHandler line Eclipse underlined the ClickHandler portion and offered me the option to include one of several headers for ClickHandler. I picked one for

FlexTable and clickHandler depreciated?

2011-07-12 Thread seven.reeds
Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing something wrong. I have a FlexTable and I try to add a ClickHandler but I am told it is depreciated. FlexTable panel = new FlexTable(); SponsorrList() { initWidget(panel);

Re: FlexTable and clickHandler depreciated?

2011-07-12 Thread Gal Dolber
Panels do not have event handlers in general, you can use FocusPanel or force the event on the FlexTable with panel.addHandler(ClickEvent.getType(), clickHandler); On Tue, Jul 12, 2011 at 6:32 PM, seven.reeds seven.re...@gmail.com wrote: Hi, gwt: 2.3.0 eclipse: 3.6.2 I must be doing