A quick check about mapping post requests in the appery gui please:
I have to post a complex json object something like this (some fields removed for clarity):
{
"CommunicationId": 3379,
"Subject": "test",
"Title": "IC 26-06-2013 09:14",
"TaskResponse": [
{
"TaskId": 387,
"Complete": false,
"TaskResponseId": 258,
"Subject": "foobar",
"CompletedById": 2,
"AuditUserId": 2,
"Status": 1,
"TimeTaken": null
}
]
}
It isn't my service, so I can't simplify it.
Here's a shot of my mapping so far:
The UI doesn't let me map the responseGrid on the page to TaskResponse in the service parameters.
This may be because:
a) Appery doesn't support mapping complex objects to post requests,
or
b) I'm doing something dumb.
If it's a) I'll try using javascript and jqXHR, but I'd like to do it the Appery way if possible. Can you guide me?
Thank you
John