As with ExtJS 4.1 with a Rest proxy and a Json reader, a URI is requested similar to this (urlencoded, though):
http://localhost:8000/api/v1/choice/?filter=[{"property":"question_id","value":2}]
My server wants filter requests to look like this:
http://localhost:8000/api/v1/choice/?question_id=2
I looked at the configuration filterParamfor the proxy server, but this does not seem relevant. Is there a practical way to achieve the request URI that the server needs?
source
share