-
27 Jun 2012 9:47 PM #1
How to set method and params for AjaxProxy in Architect 2.x?
How to set method and params for AjaxProxy in Architect 2.x?
By code I can write Ext.Ajax.request with method set to POST and params set to anything.
How could I do it in a Store's AjaxProxy inside Architect 2.x please?
-
28 Jun 2012 12:45 PM #2
If you always want to send the same params with each load you can set the extraParams configuration of your AjaxProxy.
A far more typical environment though is that you want to conditionally send different params.
Code:store.load({ params: { foo: '123' } });Aaron Conran
@aconran
Sencha Architect Development Team
-
30 Jun 2012 8:52 AM #3


Reply With Quote
