UiBinder does not handle Cell widget events. You probably want to use the upcoming Uibinder for Cells functionality (a.k.a. UiRenderer). It will be part of 2.5, but it is available in trunk, for the time being.
No documentation yet, but there is a design document here: https://docs.google.com/document/d/1Oo_imxskoGX5O9l9LhHDtJ0yJkHvNTNQqU3dkkekZYI/edit On Tuesday, June 12, 2012 1:01:59 PM UTC-4, Deepak Singh wrote: > > Hi All, > > I have an UIBinder widget. > I created a custom cell by extending AbstractCell as follows > > public class ActivityCell extends AbstractCell<EachActivity> { > > @Override > public void render(com.google.gwt.cell.client.Cell.Context context, > EachActivity value, SafeHtmlBuilder sb) { > if (value == null) { > return; > } > sb.appendHtmlConstant(value.getElement().getInnerHTML()); > } > } > > where <EachActivity> is a uibinder widget. > > There are buttons and anchors inside this uibinder. > > When added to celltable as a column, this gets rendered perfectly. But the > event does not get fired when clicking on the buttons and Anchors of > UIBinder. > > Is there any solution ? > > Help appreciated. > > > > Thanks > Deepak Singh > -- 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/-/RRQwlufNri0J. 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.
