I am new to Sencha Touch and ExtJs. I am trying to load a list from a datastore, and I am not having any luck. I am getting a response back from the php that looks like:
{"records": [{ "id": "1...
I would appreciate any help. See relevant peace of code below.
var store = new Ext.data.Store({
model: 'MyModel',
proxy: new Ext.data.HttpProxy({ url: 'server.php?action=get'}),
reader: new Ext.data.JsonReader({
root: 'records'
}),
sortInfo: {field: 'expiration', direction: "DESC"},
autoLoad: true
});
this.myList = new Ext.List({
itemTpl: '<div class="list-item-title">{summary}</div><pre><div class="list-item-narrative">{summary}</div>',
store: store,
emptyText: '<div style="margin: 5x;">No notes cached. </div>',
onItemDisclosure: true
});