Sencha Touch: Load Store For List Using Rest Proxy
I'm new to sencha so I'm sure I'm just missing something simple here. I have a rest service and I need to be able to load my store for my list view. Here's my model with the proxy
Solution 1:
Haha! I knew it was something simple. The "autoLoad: true" in the store's proxy needs to be outside of the proxy's brackets.
Ext.define('UserStore', {
extend: 'Ext.data.Store',
config: {
model: 'UserModel',
autoLoad: true,
Post a Comment for "Sencha Touch: Load Store For List Using Rest Proxy"