As it is, ExtJS 4.1 with a Rest proxy and a Json reader asks for a URI like this (urlencoded, though):
http://localhost:8000/api/v1/choice/?filter=[{"property":"question_id","value":2}]
my server wants filter requests to look like:
http://localhost:8000/api/v1/choice/?question_id=2
I’ve looked at the filterParam config for the proxy, but it doesn’t seem relevant. Is there a practical way to achieve the request URI that the server needs?
Following ain’t pretty, but it works. Now to fix the damn Store…