Subject: | JSON response changed in ExtJS 3.2 |
This is not a bug, but an API change in ExtJS 3.2:
The transaction response for the update, create and delete actions has
been changed. The format is now the same as with the list method.
ExtJs 3.1:
{
"action":"User",
"method":"update",
"type":"rpc",
"result":{
"email":"bar@simpsons.com",
"first":"Bart",
"last":"Simpson",
"id":"8WH1B4KO"
},
"tid":3
}
New in ExtJs 3.2:
{
"action":"User",
"method":"update",
"type":"rpc",
"result":{
"rows": [{
"email":"bar@simpsons.com",
"first":"Bart",
"last":"Simpson",
"id":"8WH1B4KO"
}],
...
},
"tid":3
}