jsonstore

Loading data into JsonStore

Hi, I'm trying to get some simple data into a JsonStore, but it doesn't seem to work. The code is pretty much the same as examples: var itemListStore = new Ext.data.JsonStore({ url: '/items/list', root: 'items', fields: [ {name: 'id', type: 'string'}, {name: 'name', type: 'string'}, ] }); itemListStore.load(); ....