Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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            
});
share|improve this question
and what is the problem you're having? – Jaitsu Nov 16 '11 at 13:14
If you are testing it on a browser , can you please mention the error message displayed in the web console? – heyjii Nov 17 '11 at 4:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.