seakey
unread,Jun 19, 2010, 10:52:56 AM6/19/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hi,
I would like to add some gwt-widgets (e.g. like images) to
PagingScrollTable from google-web-toolkit-incubator. If my
understanding of it is correct, there must be an attribute in my
object for each cell of a row. So, if want to have widgets in my
table, there must be an attribute for this widget, i.e. there must be
something like
public Image getImage() {
return image;
}
public void setImage(Image image) {
this.image = image;
}
in my class.
But now, if I intend to serialize it via RPC, I get a
SerializationException, because Image isn't serializable.
So, isn't it possible, to add widgets to PagingScrollTable (with RPC-
stuff)? Or is there another way to do this?