-
11 Feb 2012 8:30 AM #1
How to pass parameters when I load store via direct proxy ?
How to pass parameters when I load store via direct proxy ?
I'm trying to load a store with proxy type direct and some parameters like this:
The store looks like this:Code:store.load({ params:{paramName: paramValue} });
But it only works when using proxy type ajax. When using proxy type direct no parameter is in the json string.Code:Ext.create('Ext.data.Store', { storeId: 'testStore', model: 'testModel', proxy: { type: 'direct', directFn: Ext.php.Server.test }, });
Are there any hints?
Thanks
-
12 Feb 2012 7:21 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,581
- Vote Rating
- 433
Do you have paramsAsHash or paramOrder set on the proxy?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
12 Feb 2012 12:21 PM #3
I have tried both options but I found the problem on the server side. In the api declaration the len option was set to zero. After changing it to the number of allowed paramemters everything works as expected.


Reply With Quote