Threaded View
-
30 Jan 2012 2:31 AM #1
Answered: Proxy in Model vs. Store
Answered: Proxy in Model vs. Store
Does anyone know the difference between using a proxy in a model vs. using a proxy in a store?
Code:Ext.regModel('User', { fields: ['id', 'name'], hasMany: {model: 'Order', name: 'orders'}, proxy: { type: 'ajax', url : 'src/demos/data/userData.json' } });
-
Best Answer Posted by mitchellsimoens
Technically there really isn't a difference. The store will look for the proxy config on itself and if none is present look for it on the model. If you want to use Models by themselves (like for forms) then having the proxy on the model will allow you to still use the proxy.


Reply With Quote