Sencha Tocuh XML Reader Problem
- by Ploetzeneder
Hi,
i am student and cannot afford the premium support, so my question here:
I have quite a simple XML and it gives me the following Error:
http://img33.imageshack.us/i/screenprn.png/
Ext.regModel('User', {
fields: ['id', 'name', 'email']
});
var store = new Ext.data.Store({
model: 'User',
autoLoad:true,
proxy: {
type: 'ajax',
url : 'ajax/user.xml',
reader: {
type : 'xml',
model: 'User',
record: 'user'
}
}
});