Skip Menu |

This queue is for tickets about the CatalystX-ExtJS CPAN distribution.

Report information
The Basics
Id: 60070
Status: resolved
Priority: 0/
Queue: CatalystX-ExtJS

People
Owner: Nobody in particular
Requestors: mail [...] herbert-leitz.de
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.101700
Fixed in: (no value)



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 }
Thanks. Fixed in 1.12