>From the JavaDoc: *Deprecated.* *add a click handler instead and use getCellForEvent(ClickEvent)<http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/HTMLTable.html#getCellForEvent(com.google.gwt.event.dom.client.ClickEvent)> to get the cell information (remember to check for a null return value)*
— *Source: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/HTMLTable.html#addTableListener(com.google.gwt.user.client.ui.TableListener) * so: table.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { Cell cell = getCellForEvent(event); ... } } -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Owq-qU_Kdw0J. 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.
