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 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.