I am using an Ext JS ComboBox like in this Example: stackoverflow: How would one do html input tag autocomplete in Ext.js?
It works perfect for sending a simple query over POST to the server. (Firebug output: query=smth)
But now I have a bit different use case. I want to send some additional information to the server. Something like: query=smth&variableId=8&someMore=XY.
Of course I could just add the variables to the URL of the JsonStore and send it over GET. But I am wondering if there is something like a params object where I can specify my custom variables and which will be considered for the request.
Thank you for your time.
Yes. You can define your store with
Or you can use
beforeloadlistener