I did use one example of a GWT-RPC datasource for SmartGWT, and I got
very, very close.
I can get the data from my spring beans, and I copied data to my DTO
objects.
But, the SmartGWT ListGrid shows 23 rows, and the right column names,
but no data is listed there.
So, I was re-reading the thread again, and I was looking at the
smartgwt-extensions ... but there is a bug in it, and I don't know how
I can tell the author that it is broken.
In "SimpleGwtRPCDSServiceAsync" the remove method:
public abstract void remove (SimpleGwtRPCDSRecord record,
AsyncCallback<Object> asyncCallback);
Breaks the code "SimpleGwtRPCDSService"
Changing the line to:
public abstract void remove (SimpleGwtRPCDSRecord record,
AsyncCallback<Void> asyncCallback);
This then breaks "SimpleGwtRPCDS" when we call:
service.remove (testRec, new AsyncCallback<Object> () {});
Anyone run into this before and how to fix it?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---