Hi Isomorphic,
the following method is missing in
http://www.smartclient.com/smartgwte...SResponse.html
and (if it should be present there)
http://www.smartclient.com/docs/8.2/...SResponse.html
Could you please explain how to use it?
I'm asking because the return type of addRelatedUpdate is "DSResponse" and not "void", as I'd expect.
How is the following done best?
"Person.ds.xml" with a field holding the most current person status
"Person-to-Status.ds.xml" with fields person_id, status, date of statuschange
If I insert/update/delete a row in "Person-to-Status", the row for the person might change (because the newest status changed).
After the generated DML, I do a serverside fetch for the person in my Person-to-Status ServerObject, then added it via "addRelatedUpdate" to the 1st response. This does not work. Is this the preferred approach?
Thanks,
Blama
the following method is missing in
http://www.smartclient.com/smartgwte...SResponse.html
and (if it should be present there)
http://www.smartclient.com/docs/8.2/...SResponse.html
Could you please explain how to use it?
Code:
just ... dmlResponse1.addRelatedUpdate(dmlResponse2); or ... dmlResponse1 = dmlResponse1.addRelatedUpdate(dmlResponse2);
How is the following done best?
"Person.ds.xml" with a field holding the most current person status
"Person-to-Status.ds.xml" with fields person_id, status, date of statuschange
If I insert/update/delete a row in "Person-to-Status", the row for the person might change (because the newest status changed).
After the generated DML, I do a serverside fetch for the person in my Person-to-Status ServerObject, then added it via "addRelatedUpdate" to the 1st response. This does not work. Is this the preferred approach?
Thanks,
Blama
Comment