I try to adapt the
ClientSideRendering of the AjaxExample2
(
http://webobjects.mdimension.com/cgi-bin/WebObjects/AjaxExample2.woa/wa/PageAction/ClientSideRendering)
Instead of writing the client in _javascript_, I would like to use
GWT.
I am looking to any idea to use the service defined on the
JSONProxy class with GWT :
public class JSONProxy {
public NSArray<ComplexPerson> family() {
return _people;
}
public void voteForPerson(ComplexPerson person) {
_people.get(_people.indexOf(person)).vote();
}
}
Thanks in advance of any hint
Pierre
https://github.com/wocommunity/wonder/tree/master/Examples/Ajax/AjaxExample2